UNPKG

dfp-lib

Version:

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

26 lines (25 loc) 1.36 kB
import { XMLElement } from '../../common/soap/xmlElement'; import { LiveStreamEventStatus } from './liveStreamEventStatus'; import { AuthenticationService } from './authenticationService'; import { DfpDateTime } from './dfpDateTime'; import { AdBreakFillType } from './adBreakFillType'; export declare class LiveStreamEvent extends XMLElement { protected static XSI_TYPE: string; id: number; name: string; description: string; status: LiveStreamEventStatus; creationDateTime: DfpDateTime; lastModifiedDateTime: DfpDateTime; startDateTime: DfpDateTime; endDateTime: DfpDateTime; totalEstimatedConcurrentUsers: number; contentUrls: string[]; adTags: string[]; liveStreamEventCode: string; authenticationService: AuthenticationService; authenticationKey: string; dvrWindowSeconds: number; adBreakFillType: AdBreakFillType; constructor(id?: number, name?: string, description?: string, status?: LiveStreamEventStatus, creationDateTime?: DfpDateTime, lastModifiedDateTime?: DfpDateTime, startDateTime?: DfpDateTime, endDateTime?: DfpDateTime, totalEstimatedConcurrentUsers?: number, contentUrls?: string[], adTags?: string[], liveStreamEventCode?: string, authenticationService?: AuthenticationService, authenticationKey?: string, dvrWindowSeconds?: number, adBreakFillType?: AdBreakFillType); }