@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (18 loc) • 400 B
TypeScript
import { StartDate } from './StartDate';
/**
* startDateTime
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface StartDateTime {
/** date */
date?: StartDate;
/** xsd:int */
hour?: number;
/** xsd:int */
minute?: number;
/** xsd:int */
second?: number;
/** xsd:string */
timeZoneId?: string;
}