Is there any template so I can instantiate to create object like
campaign, adgroup, ... instead of building a dictionary.
for example instead of
CampaignOperation={
'status': 'PAUSED',
'startDate': '20100109',
'endDate': '20201231',
'name': 'Camphello',
'budget':
{
'amount': {
'ComparableValue_Type': 'Money',
'microAmount': '1000000'
},
'period': 'DAILY',
'deliveryMethod': 'STANDARD'
},
'frequencyCap': {'impressions': '0', 'timeUnit': (), 'level':
()},
'biddingStrategy': {'type': 'ManualCPC'},
'adServingOptimizationStatus': 'OPTIMIZE',
'autoKeywordMatchingStatus': 'OPT_OUT',
}
using somthing like
cmp=client.type.create('CampaignOperation')
cmp.status='PAUSED'
cmp.name=...
....
--
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en.