export enum TargetedRequestPlatforms {
  UNKNOWN = 'UNKNOWN',
  BROWSER = 'BROWSER',
  MOBILE_APP = 'MOBILE_APP',
  VIDEO_PLAYER = 'VIDEO_PLAYER',
}

/**
 * requestPlatformTargeting
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
 */
export interface RequestPlatformTargeting {
  /** RequestPlatform|xsd:string|UNKNOWN,BROWSER,MOBILE_APP,VIDEO_PLAYER */
  targetedRequestPlatforms?: Array<
    TargetedRequestPlatforms | keyof typeof TargetedRequestPlatforms
  >
}
