@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
15 lines (14 loc) • 403 B
TypeScript
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;
}