line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Yahoo::Marketing::AdGroupForecastRequestData; |
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
|
|
42815
|
use strict; use warnings; |
|
2
|
|
|
2
|
|
4
|
|
|
2
|
|
|
|
|
61
|
|
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
52
|
|
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
10
|
use base qw/Yahoo::Marketing::ComplexType/; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
613
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Yahoo::Marketing::AdGroupForecastRequestData - an object to represent a Yahoo Marketing AdGroupForecastRequestData. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=cut |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub _user_setable_attributes { |
16
|
|
|
|
|
|
|
return ( qw/ |
17
|
|
|
|
|
|
|
accountID |
18
|
|
|
|
|
|
|
creatives |
19
|
|
|
|
|
|
|
matchType |
20
|
|
|
|
|
|
|
maxBid |
21
|
|
|
|
|
|
|
targetingAttributes |
22
|
|
|
|
|
|
|
targetingProfile |
23
|
|
|
|
|
|
|
/ ); |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
sub _read_only_attributes { |
27
|
|
|
|
|
|
|
return ( qw/ |
28
|
|
|
|
|
|
|
/ ); |
29
|
|
|
|
|
|
|
} |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes, |
32
|
|
|
|
|
|
|
__PACKAGE__->_read_only_attributes |
33
|
|
|
|
|
|
|
); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |
37
|
|
|
|
|
|
|
=head1 SYNOPSIS |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
See L for documentation of the various data objects. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 METHODS |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 new |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Creates a new instance |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 get/set methods |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=over 8 |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
accountID |
55
|
|
|
|
|
|
|
creatives |
56
|
|
|
|
|
|
|
matchType |
57
|
|
|
|
|
|
|
maxBid |
58
|
|
|
|
|
|
|
targetingAttributes |
59
|
|
|
|
|
|
|
targetingProfile |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=back |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 get (read only) methods |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=over 8 |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=back |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|