UNPKG

dfp-lib

Version:

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

15 lines (14 loc) 1.03 kB
import { BaseVideoCreative } from './baseVideoCreative'; import { DfpDateTime } from './dfpDateTime'; import { ConversionEventTrackingUrlsMapEntry } from './conversionEventTrackingUrlsMapEntry'; import { SslScanResult } from './sslScanResult'; import { SslManualOverride } from './sslManualOverride'; export declare class SetTopBoxCreative extends BaseVideoCreative { protected static XSI_TYPE: string; externalAssetId: string; providerId: string; availabilityRegionIds: string[]; licenseWindowStartDateTime: DfpDateTime; licenseWindowEndDateTime: DfpDateTime; constructor(externalAssetId?: string, providerId?: string, availabilityRegionIds?: string[], licenseWindowStartDateTime?: DfpDateTime, licenseWindowEndDateTime?: DfpDateTime, duration?: number, allowDurationOverride?: boolean, trackingUrls?: ConversionEventTrackingUrlsMapEntry[], companionCreativeIds?: number[], customParameters?: string, vastPreviewUrl?: string, sslScanResult?: SslScanResult, sslManualOverride?: SslManualOverride); }