Hello,
I am getting some errors because of OWNED_AND_OPERATED and MULTIPLE campaign channel types. But there is no documentation about these channel types. I just found that explanation on the github repository:
/// <summary>
/// A campaign simulation. Supported combinations of advertising
/// channel type, simulation type and simulation modification
/// method is detailed below respectively.
///
/// SEARCH - CPC_BID - UNIFORM
/// SEARCH - CPC_BID - SCALING
/// SEARCH - TARGET_CPA - UNIFORM
/// SEARCH - TARGET_CPA - SCALING
/// SEARCH - TARGET_ROAS - UNIFORM
/// SEARCH - TARGET_IMPRESSION_SHARE - UNIFORM
/// SEARCH - BUDGET - UNIFORM
/// SHOPPING - BUDGET - UNIFORM
/// SHOPPING - TARGET_ROAS - UNIFORM
/// MULTIPLE - TARGET_CPA - UNIFORM
/// OWNED_AND_OPERATED - TARGET_CPA - DEFAULT
/// DISPLAY - TARGET_CPA - UNIFORM
/// </summary>
But these two types OWNED_AND_OPERATED and MULTIPLE does not exist in the enum in .net client.
public enum AdvertisingChannelType
{
[OriginalName("UNSPECIFIED")]
Unspecified,
[OriginalName("UNKNOWN")]
Unknown,
[OriginalName("SEARCH")]
Search,
[OriginalName("DISPLAY")]
Display,
[OriginalName("SHOPPING")]
Shopping,
[OriginalName("HOTEL")]
Hotel,
[OriginalName("VIDEO")]
Video,
[OriginalName("MULTI_CHANNEL")]
MultiChannel,
[OriginalName("LOCAL")]
Local,
[OriginalName("SMART")]
Smart,
[OriginalName("PERFORMANCE_MAX")]
PerformanceMax,
[OriginalName("LOCAL_SERVICES")]
LocalServices,
[OriginalName("DISCOVERY")]
Discovery
}
So, could you give some information about OWNED_AND_OPERATED and MULTIPLE channel types? What is the equivalent of them in enum?
Thanks