@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (17 loc) • 513 B
text/typescript
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/v202408`
*/
export interface RequestPlatformTargeting {
/** RequestPlatform|xsd:string|UNKNOWN,BROWSER,MOBILE_APP,VIDEO_PLAYER */
targetedRequestPlatforms?: Array<
TargetedRequestPlatforms | keyof typeof TargetedRequestPlatforms
>
}