File Coverage

blib/lib/Yahoo/Marketing/APT/GuaranteedDeal.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::APT::GuaranteedDeal;
2             # Copyright (c) 2010 Yahoo! Inc. All rights reserved.
3             # The copyrights to the contents of this file are licensed under the Perl Artistic License (ver. 15 Aug 1997)
4              
5 1     1   49493 use strict; use warnings;
  1     1   3  
  1         30  
  1         5  
  1         2  
  1         29  
6              
7 1     1   5 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         899  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::GuaranteedDeal - a data object to represent a GuaranteedDeal.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             activationTimestamp
18             audienceSharingRuleID
19             buyerDetails
20             buyerRevenueSharePercentage
21             createTimestamp
22             endDate
23             lastUpdateTimestamp
24             name
25             sellerDetails
26             sellerRevenueSharePercentage
27             sellingRuleID
28             startDate
29             status
30             / );
31             }
32              
33             sub _read_only_attributes {
34             return ( qw/
35             / );
36             }
37              
38             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
39             __PACKAGE__->_read_only_attributes
40             );
41              
42              
43             1;
44             =head1 SYNOPSIS
45              
46             See L for documentation of the various data objects.
47              
48              
49             =cut
50              
51             =head1 METHODS
52              
53             =head2 new
54              
55             Creates a new instance
56              
57             =head2 get/set methods
58              
59             =over 8
60              
61             activationTimestamp
62             audienceSharingRuleID
63             buyerDetails
64             buyerRevenueSharePercentage
65             createTimestamp
66             endDate
67             lastUpdateTimestamp
68             name
69             sellerDetails
70             sellerRevenueSharePercentage
71             sellingRuleID
72             startDate
73             status
74              
75             =back
76              
77             =head2 get (read only) methods
78              
79             =over 8
80              
81              
82             =back
83              
84             =cut
85