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