Hi guys!
Just wondering how you can derive the currency code for Price extensions from the attributeValues in the Placeholder feed item report:
https://developers.google.com/adwords/api/docs/appendix/reports/placeholder-feed-item-report#attributevaluesI found the Feed placeholders for the Price extension here:
https://developers.google.com/adwords/api/docs/appendix/placeholders#priceThere it states e.g. ID 102 is of type "Price" with a currency ("e.g,. 30 USD"). Checking the output however, it has ID 7 and looks as follows:
'7': {
currency_code_: [ 85, 83, 68 ],
amount_micros_: 60000000,
optional_0_: 3,
isMutable: true,
cachedSize: -1
}
As you can see the currency code property contains an Array with numeric values instead of a currency code such as USD.
I tried finding valid values for the returned values (e.g. 85), but I can't seem to find something to map it to.
Is this return value by design? And if so, how can I find the correct currency code for the values returned?
Thanks,
Tiana