Hello!
I want to create automatized tools for AdWords and I have a problem with understanding of, what is xsi:type?
label_service = AdWordsClient.GetService('LabelService', version='v201702')
operations = [{
'operator': 'ADD',
'operand': {
'name': CampLab,
},
'settings': [
{
'xsi_type': 'CONTENT_LABEL'
}
]
}]
labels = label_service.mutate(operations)
Variable CampLab is inherited from another function, but the problematic place I have is "xsi_type", I haven't found any information on what that might be!
suds.TypeNotFound: Type not found: 'ns0:CONTENT_LABEL'
This is the error I recieve.
Btw, I am doing this in python.
Toms Martins Simanis