@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
18 lines (16 loc) • 438 B
text/typescript
export enum AdSpotFillType {
REQUIRED = 'REQUIRED',
OPTIONAL = 'OPTIONAL',
UNKNOWN = 'UNKNOWN',
}
/**
* breakTemplateMembers
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface BreakTemplateMembers {
/** xsd:long */
adSpotId?: number
/** AdSpotFillType|xsd:string|REQUIRED,OPTIONAL,UNKNOWN */
adSpotFillType?: AdSpotFillType | keyof typeof AdSpotFillType
}