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
}
