@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
16 lines (15 loc) • 524 B
TypeScript
export declare 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/v202411`
*/
export interface RequestPlatformTargeting {
/** RequestPlatform|xsd:string|UNKNOWN,BROWSER,MOBILE_APP,VIDEO_PLAYER */
targetedRequestPlatforms?: Array<TargetedRequestPlatforms | keyof typeof TargetedRequestPlatforms>;
}