File Coverage

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