dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 749 B
TypeScript
import { HasDestinationUrlCreative } from './hasDestinationUrlCreative';
import { SslScanResult } from './sslScanResult';
import { SslManualOverride } from './sslManualOverride';
import { DestinationUrlType } from './destinationUrlType';
export declare abstract class BaseFlashRedirectCreative extends HasDestinationUrlCreative {
protected static XSI_TYPE: string;
flashUrl: string;
fallbackUrl: string;
fallbackPreviewUrl: string;
sslScanResult: SslScanResult;
sslManualOverride: SslManualOverride;
constructor(flashUrl?: string, fallbackUrl?: string, fallbackPreviewUrl?: string, sslScanResult?: SslScanResult, sslManualOverride?: SslManualOverride, destinationUrl?: string, destinationUrlType?: DestinationUrlType);
}