File Coverage

lib/Google/Ads/AdWords/v201702/BillingAccount.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::BillingAccount;
2 1     1   2613 use strict;
  1         3  
  1         24  
3 1     1   4 use warnings;
  1         2  
  1         77  
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         11  
18 1     1   156 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         6  
  1         104  
19              
20             { # BLOCK to scope variables
21              
22             my %id_of :ATTR(:get);
23             my %name_of :ATTR(:get);
24             my %currencyCode_of :ATTR(:get);
25             my %primaryBillingId_of :ATTR(:get);
26             my %secondaryBillingId_of :ATTR(:get);
27              
28             __PACKAGE__->_factory(
29             [ qw( id
30             name
31             currencyCode
32             primaryBillingId
33             secondaryBillingId
34              
35             ) ],
36             {
37             'id' => \%id_of,
38             'name' => \%name_of,
39             'currencyCode' => \%currencyCode_of,
40             'primaryBillingId' => \%primaryBillingId_of,
41             'secondaryBillingId' => \%secondaryBillingId_of,
42             },
43             {
44             'id' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
45             'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
46             'currencyCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
47             'primaryBillingId' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
48             'secondaryBillingId' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
49             },
50             {
51              
52             'id' => 'id',
53             'name' => 'name',
54             'currencyCode' => 'currencyCode',
55             'primaryBillingId' => 'primaryBillingId',
56             'secondaryBillingId' => 'secondaryBillingId',
57             }
58             );
59              
60             } # end BLOCK
61              
62              
63              
64              
65              
66              
67              
68             1;
69              
70              
71             =pod
72              
73             =head1 NAME
74              
75             Google::Ads::AdWords::v201702::BillingAccount
76              
77             =head1 DESCRIPTION
78              
79             Perl data type class for the XML Schema defined complexType
80             BillingAccount from the namespace https://adwords.google.com/api/adwords/billing/v201702.
81              
82             Represents an account to which invoices are sent in consolidated billing.
83              
84              
85              
86              
87             =head2 PROPERTIES
88              
89             The following properties may be accessed using get_PROPERTY / set_PROPERTY
90             methods:
91              
92             =over
93              
94             =item * id
95              
96              
97             =item * name
98              
99              
100             =item * currencyCode
101              
102              
103             =item * primaryBillingId
104              
105              
106             =item * secondaryBillingId
107              
108              
109              
110              
111             =back
112              
113              
114             =head1 METHODS
115              
116             =head2 new
117              
118             Constructor. The following data structure may be passed to new():
119              
120              
121              
122              
123              
124              
125             =head1 AUTHOR
126              
127             Generated by SOAP::WSDL
128              
129             =cut
130