line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Yahoo::Marketing::APT::PlacementAudienceTargetingAttributes; |
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
|
|
45627
|
use strict; use warnings; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
60
|
|
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
24
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
4
|
use base qw/Yahoo::Marketing::ComplexType/; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
852
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Yahoo::Marketing::APT::PlacementAudienceTargetingAttributes - a data object to represent a PlacementAudienceTargetingAttributes. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=cut |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub _user_setable_attributes { |
16
|
|
|
|
|
|
|
return ( qw/ |
17
|
|
|
|
|
|
|
ages |
18
|
|
|
|
|
|
|
audienceSegments |
19
|
|
|
|
|
|
|
bandwidths |
20
|
|
|
|
|
|
|
browsers |
21
|
|
|
|
|
|
|
countries |
22
|
|
|
|
|
|
|
customGeoAreas |
23
|
|
|
|
|
|
|
gender |
24
|
|
|
|
|
|
|
incomes |
25
|
|
|
|
|
|
|
marketingAreas |
26
|
|
|
|
|
|
|
operatingSystems |
27
|
|
|
|
|
|
|
states |
28
|
|
|
|
|
|
|
yahooPremiumBehavioralSegments |
29
|
|
|
|
|
|
|
/ ); |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
sub _read_only_attributes { |
33
|
|
|
|
|
|
|
return ( qw/ |
34
|
|
|
|
|
|
|
/ ); |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes, |
38
|
|
|
|
|
|
|
__PACKAGE__->_read_only_attributes |
39
|
|
|
|
|
|
|
); |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
=head1 SYNOPSIS |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
See L for documentation of the various data objects. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=cut |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 METHODS |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 new |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Creates a new instance |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 get/set methods |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=over 8 |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
ages |
61
|
|
|
|
|
|
|
audienceSegments |
62
|
|
|
|
|
|
|
bandwidths |
63
|
|
|
|
|
|
|
browsers |
64
|
|
|
|
|
|
|
countries |
65
|
|
|
|
|
|
|
customGeoAreas |
66
|
|
|
|
|
|
|
gender |
67
|
|
|
|
|
|
|
incomes |
68
|
|
|
|
|
|
|
marketingAreas |
69
|
|
|
|
|
|
|
operatingSystems |
70
|
|
|
|
|
|
|
states |
71
|
|
|
|
|
|
|
yahooPremiumBehavioralSegments |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=back |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head2 get (read only) methods |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=over 8 |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=back |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=cut |
83
|
|
|
|
|
|
|
|