File Coverage

blib/lib/Yahoo/Marketing/APT/ReferralSegment.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::ReferralSegment;
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   47990 use strict; use warnings;
  1     1   2  
  1         38  
  1         6  
  1         3  
  1         32  
6              
7 1     1   6 use base qw/Yahoo::Marketing::ComplexType/;
  1         1  
  1         981  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::ReferralSegment - a data object to represent a ReferralSegment.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             activationTimestamp
20             audienceSegmentCategoryID
21             createTimestamp
22             deactivationTimestamp
23             description
24             lastUpdateTimestamp
25             name
26             referralUrls
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             ID
60             accountID
61             activationTimestamp
62             audienceSegmentCategoryID
63             createTimestamp
64             deactivationTimestamp
65             description
66             lastUpdateTimestamp
67             name
68             referralUrls
69             status
70              
71             =back
72              
73             =head2 get (read only) methods
74              
75             =over 8
76              
77              
78             =back
79              
80             =cut
81