File Coverage

lib/Google/Ads/AdWords/v201702/ShoppingSetting.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod n/a
total 12 16 75.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::ShoppingSetting;
2 1     1   1802 use strict;
  1         2  
  1         29  
3 1     1   5 use warnings;
  1         2  
  1         82  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/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              
18 1     1   6 use base qw(Google::Ads::AdWords::v201702::Setting);
  1         1  
  1         118  
19             # Variety: sequence
20             use Class::Std::Fast::Storable constructor => 'none';
21             use base qw(Google::Ads::SOAP::Typelib::ComplexType);
22              
23             { # BLOCK to scope variables
24              
25             my %Setting__Type_of :ATTR(:get);
26             my %merchantId_of :ATTR(:get);
27             my %salesCountry_of :ATTR(:get);
28             my %campaignPriority_of :ATTR(:get);
29             my %enableLocal_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( Setting__Type
33             merchantId
34             salesCountry
35             campaignPriority
36             enableLocal
37              
38             ) ],
39             {
40             'Setting__Type' => \%Setting__Type_of,
41             'merchantId' => \%merchantId_of,
42             'salesCountry' => \%salesCountry_of,
43             'campaignPriority' => \%campaignPriority_of,
44             'enableLocal' => \%enableLocal_of,
45             },
46             {
47             'Setting__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
48             'merchantId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
49             'salesCountry' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
50             'campaignPriority' => 'SOAP::WSDL::XSD::Typelib::Builtin::int',
51             'enableLocal' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
52             },
53             {
54              
55             'Setting__Type' => 'Setting.Type',
56             'merchantId' => 'merchantId',
57             'salesCountry' => 'salesCountry',
58             'campaignPriority' => 'campaignPriority',
59             'enableLocal' => 'enableLocal',
60             }
61             );
62              
63             } # end BLOCK
64              
65              
66              
67              
68              
69              
70              
71             1;
72              
73              
74             =pod
75              
76             =head1 NAME
77              
78             Google::Ads::AdWords::v201702::ShoppingSetting
79              
80             =head1 DESCRIPTION
81              
82             Perl data type class for the XML Schema defined complexType
83             ShoppingSetting from the namespace https://adwords.google.com/api/adwords/cm/v201702.
84              
85             Setting for shopping campaigns. Defines the universe of products covered by the campaign. Encapsulates a merchant ID, sales country, and campaign priority.
86              
87              
88              
89              
90             =head2 PROPERTIES
91              
92             The following properties may be accessed using get_PROPERTY / set_PROPERTY
93             methods:
94              
95             =over
96              
97             =item * merchantId
98              
99              
100             =item * salesCountry
101              
102              
103             =item * campaignPriority
104              
105              
106             =item * enableLocal
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