File Coverage

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