Hello everyone!
I need some help regarding setting a conversion action.
I'm trying to create an Upload Conversion Action of type "Call"' through Google ADS API but I didn't find anywhere how to properly set up de ValueSettings to have no currency code set.
The PHP code snippet:
'value_settings' => new ValueSettings([
'default_currency_code' => 'UNSPECIFIED',
'default_value' => 1,
'always_use_default_value' => true,
]),
In 'default_currency_code I tried: 'NONE', 'UNKNOWN', 'UNSPECIFIED' but hey all throw error of invalid value. If I don't set the field or set it to false, empty string or null the Conversion Action ends up created but with the account default's currency code set which is undesirable.
What value should I use for default_currency_code that represents the 'No currency set' in the web interface?
Thank you.