export enum RefreshType { AUTOMATIC = 'AUTOMATIC', MANUAL = 'MANUAL', UNKNOWN = 'UNKNOWN', } /** * masterPlaylistSettings * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202505` */ export interface MasterPlaylistSettings { /** RefreshType|xsd:string|AUTOMATIC,MANUAL,UNKNOWN */ refreshType?: RefreshType | keyof typeof RefreshType }