@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (17 loc) • 399 B
text/typescript
export enum Minute {
ZERO = 'ZERO',
FIFTEEN = 'FIFTEEN',
THIRTY = 'THIRTY',
FORTY_FIVE = 'FORTY_FIVE',
}
/**
* startTime
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202411`
*/
export interface StartTime {
/** xsd:int */
hour?: number
/** MinuteOfHour|xsd:string|ZERO,FIFTEEN,THIRTY,FORTY_FIVE */
minute?: Minute | keyof typeof Minute
}