File Coverage

blib/lib/Yahoo/Marketing/APT/LibraryImageAd.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::LibraryImageAd;
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   53888 use strict; use warnings;
  1     1   3  
  1         35  
  1         6  
  1         2  
  1         29  
6              
7 1     1   7 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         985  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::LibraryImageAd - a data object to represent a LibraryImageAd.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             adFormat
20             adSizeID
21             alternateText
22             associatedToPlacement
23             compositeClickThroughURL
24             createTimestamp
25             editorialStatus
26             externalCreativeURL
27             folderID
28             height
29             imageCreativeID
30             impressionTrackingURL
31             isLocalCreative
32             lastUpdateTimestamp
33             name
34             status
35             type
36             weight
37             width
38             windowTarget
39             / );
40             }
41              
42             sub _read_only_attributes {
43             return ( qw/
44             / );
45             }
46              
47             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
48             __PACKAGE__->_read_only_attributes
49             );
50              
51              
52             1;
53             =head1 SYNOPSIS
54              
55             See L for documentation of the various data objects.
56              
57              
58             =cut
59              
60             =head1 METHODS
61              
62             =head2 new
63              
64             Creates a new instance
65              
66             =head2 get/set methods
67              
68             =over 8
69              
70             ID
71             accountID
72             adFormat
73             adSizeID
74             alternateText
75             associatedToPlacement
76             compositeClickThroughURL
77             createTimestamp
78             editorialStatus
79             externalCreativeURL
80             folderID
81             height
82             imageCreativeID
83             impressionTrackingURL
84             isLocalCreative
85             lastUpdateTimestamp
86             name
87             status
88             type
89             weight
90             width
91             windowTarget
92              
93             =back
94              
95             =head2 get (read only) methods
96              
97             =over 8
98              
99              
100             =back
101              
102             =cut
103