dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 1.07 kB
TypeScript
import { BaseFlashRedirectCreative } from './baseFlashRedirectCreative';
import { ConversionEventTrackingUrlsMapEntry } from './conversionEventTrackingUrlsMapEntry';
import { ApiFramework } from './apiFramework';
import { Size } from './size';
import { SslScanResult } from './sslScanResult';
import { SslManualOverride } from './sslManualOverride';
export declare class FlashRedirectOverlayCreative extends BaseFlashRedirectCreative {
protected static XSI_TYPE: string;
companionCreativeIds: number[];
trackingUrls: ConversionEventTrackingUrlsMapEntry[];
customParameters: string;
apiFramework: ApiFramework;
duration: number;
flashAssetSize: Size;
vastPreviewUrl: string;
constructor(companionCreativeIds?: number[], trackingUrls?: ConversionEventTrackingUrlsMapEntry[], customParameters?: string, apiFramework?: ApiFramework, duration?: number, flashAssetSize?: Size, vastPreviewUrl?: string, flashUrl?: string, fallbackUrl?: string, fallbackPreviewUrl?: string, sslScanResult?: SslScanResult, sslManualOverride?: SslManualOverride);
}