Hello there,
What is the best way to identify the data type that is shown as ENUM when getting a response from this method in python library:
I was assuming that it is always "string" but just run into an example where it is a string for one customer id and an integer for another.
Examples are
advertising_channel_sub_type, advertising_channel_sub_type
both can be a string as "DISPLAY_GMAIL_AD" and an integer as 7.
I need to save this data in one place for reporting purposes.
My question are:
How can i get the data type for ENUM?
and why is it different for the same fields in different accounts?
Thanks,
Alex