sub
_type_name {
return
'AdGroup'
;
}
sub
_namespace_uri {
}
our
@_attributes
= (
qw/
AdDistribution
BiddingModel
BroadMatchBid
CashBackInfo
ContentMatchBid
EndDate
ExactMatchBid
Id
LanguageAndRegion
Name
NegativeKeywords
NegativeSiteUrls
PhraseMatchBid
PricingModel
StartDate
Status
/
);
sub
_attributes {
my
$self
=
shift
;
return
(
$self
->SUPER::_attributes,
@_attributes
);
}
our
%_attribute_type
= (
AdDistribution
=>
'AdDistribution'
,
BiddingModel
=>
'BiddingModel'
,
BroadMatchBid
=>
'Bid'
,
CashBackInfo
=>
'CashBackInfo'
,
ContentMatchBid
=>
'Bid'
,
EndDate
=>
'Date'
,
ExactMatchBid
=>
'Bid'
,
Id
=>
'long'
,
LanguageAndRegion
=>
'string'
,
Name
=>
'string'
,
NegativeKeywords
=>
'ArrayOfstring'
,
NegativeSiteUrls
=>
'ArrayOfstring'
,
PhraseMatchBid
=>
'Bid'
,
PricingModel
=>
'PricingModel'
,
StartDate
=>
'Date'
,
Status
=>
'AdGroupStatus'
,
);
sub
_attribute_type {
my
(
$self
,
$attribute
) =
@_
;
if
(
exists
$_attribute_type
{
$attribute
}) {
return
$_attribute_type
{
$attribute
};
}
return
$self
->SUPER::_attribute_type(
$attribute
);
}
our
%_attribute_min_occurs
= (
AdDistribution
=> 0,
BiddingModel
=> 0,
BroadMatchBid
=> 0,
CashBackInfo
=> 0,
ContentMatchBid
=> 0,
EndDate
=> 0,
ExactMatchBid
=> 0,
Id
=> 0,
LanguageAndRegion
=> 0,
Name
=> 0,
NegativeKeywords
=> 0,
NegativeSiteUrls
=> 0,
PhraseMatchBid
=> 0,
PricingModel
=> 0,
StartDate
=> 0,
Status
=> 0,
);
sub
_attribute_min_occurs {
my
(
$self
,
$attribute
) =
@_
;
if
(
exists
$_attribute_min_occurs
{
$attribute
}) {
return
$_attribute_min_occurs
{
$attribute
};
}
return
$self
->SUPER::_attribute_min_occurs(
$attribute
);
}
__PACKAGE__->mk_accessors(
@_attributes
);
1;