File Coverage

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