File Coverage

blib/lib/Yahoo/Marketing/APT/NonGuaranteedDeal.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::NonGuaranteedDeal;
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   284911 use strict; use warnings;
  1     1   2  
  1         28  
  1         5  
  1         2  
  1         25  
6              
7 1     1   5 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         852  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::NonGuaranteedDeal - a data object to represent a NonGuaranteedDeal.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             activationTimestamp
18             buyerDetails
19             buyerRevenueSharePercentage
20             createTimestamp
21             endDate
22             lastUpdateTimestamp
23             name
24             sellerDetails
25             sellerRevenueSharePercentage
26             startDate
27             status
28             / );
29             }
30              
31             sub _read_only_attributes {
32             return ( qw/
33             / );
34             }
35              
36             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
37             __PACKAGE__->_read_only_attributes
38             );
39              
40              
41             1;
42             =head1 SYNOPSIS
43              
44             See L for documentation of the various data objects.
45              
46              
47             =cut
48              
49             =head1 METHODS
50              
51             =head2 new
52              
53             Creates a new instance
54              
55             =head2 get/set methods
56              
57             =over 8
58              
59             activationTimestamp
60             buyerDetails
61             buyerRevenueSharePercentage
62             createTimestamp
63             endDate
64             lastUpdateTimestamp
65             name
66             sellerDetails
67             sellerRevenueSharePercentage
68             startDate
69             status
70              
71             =back
72              
73             =head2 get (read only) methods
74              
75             =over 8
76              
77              
78             =back
79              
80             =cut
81