@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
16 lines (14 loc) • 386 B
text/typescript
export enum RefreshType {
AUTOMATIC = 'AUTOMATIC',
MANUAL = 'MANUAL',
UNKNOWN = 'UNKNOWN',
}
/**
* masterPlaylistSettings
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface MasterPlaylistSettings {
/** RefreshType|xsd:string|AUTOMATIC,MANUAL,UNKNOWN */
refreshType?: RefreshType | keyof typeof RefreshType
}