UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

12 lines (11 loc) 395 B
import { XMLElement } from '../../common/soap/xmlElement'; import { DfpDate } from './dfpDate'; export declare class DfpDateTime extends XMLElement { protected static XSI_TYPE: string; date: DfpDate; hour: number; minute: number; second: number; timeZoneID: string; constructor(date?: DfpDate, hour?: number, minute?: number, second?: number, timeZoneID?: string); }