File Coverage

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