File Coverage

blib/lib/Yahoo/Marketing/APT/LibraryInteractivePharmaceuticalVideoAd.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::LibraryInteractivePharmaceuticalVideoAd;
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   45302 use strict; use warnings;
  1     1   3  
  1         30  
  1         5  
  1         2  
  1         24  
6              
7 1     1   6 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         872  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::LibraryInteractivePharmaceuticalVideoAd - a data object to represent a LibraryInteractivePharmaceuticalVideoAd.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             actFour
20             actOne
21             actThree
22             actTwo
23             adFormat
24             associatedToPlacement
25             createTimestamp
26             editorialStatus
27             folderID
28             impressionTrackingURLs
29             lastUpdateTimestamp
30             name
31             status
32             type
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             actFour
67             actOne
68             actThree
69             actTwo
70             adFormat
71             associatedToPlacement
72             createTimestamp
73             editorialStatus
74             folderID
75             impressionTrackingURLs
76             lastUpdateTimestamp
77             name
78             status
79             type
80              
81             =back
82              
83             =head2 get (read only) methods
84              
85             =over 8
86              
87              
88             =back
89              
90             =cut
91