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