File Coverage

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