export declare enum AdSpotFillType { REQUIRED = "REQUIRED", OPTIONAL = "OPTIONAL", UNKNOWN = "UNKNOWN" } /** * breakTemplateMembers * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202602` */ export interface BreakTemplateMembers { /** xsd:long */ adSpotId?: number; /** AdSpotFillType|xsd:string|REQUIRED,OPTIONAL,UNKNOWN */ adSpotFillType?: AdSpotFillType | keyof typeof AdSpotFillType; }