File Coverage

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