File Coverage

blib/lib/Yahoo/Marketing/UpdateForAd.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::UpdateForAd;
2             # Copyright (c) 2009 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 2     2   43854 use strict; use warnings;
  2     2   6  
  2         58  
  2         11  
  2         2  
  2         51  
6              
7 2     2   10 use base qw/Yahoo::Marketing::ComplexType/;
  2         4  
  2         559  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::UpdateForAd - an object to represent a Yahoo Marketing UpdateForAd.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             carrierConfig
20             description
21             displayUrl
22             editorialStatus
23             shortDescription
24             title
25             url
26             / );
27             }
28              
29             sub _read_only_attributes {
30             return ( qw/
31             createTimestamp
32             lastUpdateTimestamp
33             / );
34             }
35              
36             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
37             __PACKAGE__->_read_only_attributes
38             );
39              
40              
41             1;
42             =head1 SYNOPSIS
43              
44             See L for documentation of the various data objects.
45              
46              
47             =cut
48              
49             =head1 METHODS
50              
51             =head2 new
52              
53             Creates a new instance
54              
55             =head2 get/set methods
56              
57             =over 8
58              
59             ID
60             accountID
61             carrierConfig
62             description
63             displayUrl
64             editorialStatus
65             shortDescription
66             title
67             url
68              
69             =back
70              
71             =head2 get (read only) methods
72              
73             =over 8
74              
75             createTimestamp
76             lastUpdateTimestamp
77              
78             =back
79              
80             =cut
81