File Coverage

lib/Google/Ads/AdWords/v201702/BudgetOrderRequest.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 6 66.6
pod n/a
total 16 20 80.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::BudgetOrderRequest;
2 1     1   1584 use strict;
  1         2  
  1         23  
3 1     1   5 use warnings;
  1         2  
  1         91  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/billing/v201702' };
9              
10             our $XML_ATTRIBUTE_CLASS;
11             undef $XML_ATTRIBUTE_CLASS;
12              
13             sub __get_attr_class {
14 0     0     return $XML_ATTRIBUTE_CLASS;
15             }
16              
17 1     1   6 use Class::Std::Fast::Storable constructor => 'none';
  1         2  
  1         7  
18 1     1   144 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         3  
  1         114  
19              
20             { # BLOCK to scope variables
21              
22             my %status_of :ATTR(:get);
23             my %date_of :ATTR(:get);
24             my %billingAccountName_of :ATTR(:get);
25             my %poNumber_of :ATTR(:get);
26             my %budgetOrderName_of :ATTR(:get);
27             my %spendingLimit_of :ATTR(:get);
28             my %startDateTime_of :ATTR(:get);
29             my %endDateTime_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( status
33             date
34             billingAccountName
35             poNumber
36             budgetOrderName
37             spendingLimit
38             startDateTime
39             endDateTime
40              
41             ) ],
42             {
43             'status' => \%status_of,
44             'date' => \%date_of,
45             'billingAccountName' => \%billingAccountName_of,
46             'poNumber' => \%poNumber_of,
47             'budgetOrderName' => \%budgetOrderName_of,
48             'spendingLimit' => \%spendingLimit_of,
49             'startDateTime' => \%startDateTime_of,
50             'endDateTime' => \%endDateTime_of,
51             },
52             {
53             'status' => 'Google::Ads::AdWords::v201702::BudgetOrderRequest::Status',
54             'date' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
55             'billingAccountName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
56             'poNumber' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             'budgetOrderName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
58             'spendingLimit' => 'Google::Ads::AdWords::v201702::Money',
59             'startDateTime' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
60             'endDateTime' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
61             },
62             {
63              
64             'status' => 'status',
65             'date' => 'date',
66             'billingAccountName' => 'billingAccountName',
67             'poNumber' => 'poNumber',
68             'budgetOrderName' => 'budgetOrderName',
69             'spendingLimit' => 'spendingLimit',
70             'startDateTime' => 'startDateTime',
71             'endDateTime' => 'endDateTime',
72             }
73             );
74              
75             } # end BLOCK
76              
77              
78              
79              
80              
81              
82              
83             1;
84              
85              
86             =pod
87              
88             =head1 NAME
89              
90             Google::Ads::AdWords::v201702::BudgetOrderRequest
91              
92             =head1 DESCRIPTION
93              
94             Perl data type class for the XML Schema defined complexType
95             BudgetOrderRequest from the namespace https://adwords.google.com/api/adwords/billing/v201702.
96              
97             Holds fields that provide information on the last set of values that were passed in through the parent BudgetOrder for mutate.add and mutate.set.
98              
99              
100              
101              
102             =head2 PROPERTIES
103              
104             The following properties may be accessed using get_PROPERTY / set_PROPERTY
105             methods:
106              
107             =over
108              
109             =item * status
110              
111              
112             =item * date
113              
114              
115             =item * billingAccountName
116              
117              
118             =item * poNumber
119              
120              
121             =item * budgetOrderName
122              
123              
124             =item * spendingLimit
125              
126              
127             =item * startDateTime
128              
129              
130             =item * endDateTime
131              
132              
133              
134              
135             =back
136              
137              
138             =head1 METHODS
139              
140             =head2 new
141              
142             Constructor. The following data structure may be passed to new():
143              
144              
145              
146              
147              
148              
149             =head1 AUTHOR
150              
151             Generated by SOAP::WSDL
152              
153             =cut
154