dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 891 B
TypeScript
import { Creative } from './creative';
import { SslScanResult } from './sslScanResult';
import { SslManualOverride } from './sslManualOverride';
import { LockedOrientation } from './lockedOrientation';
export declare class ThirdPartyCreative extends Creative {
protected static XSI_TYPE: string;
snippet: string;
expandedSnippet: string;
sslScanResult: SslScanResult;
sslManualOverride: SslManualOverride;
lockedOrientation: LockedOrientation;
isSafeFrameCompatible: boolean;
constructor(snippet?: string, expandedSnippet?: string, sslScanResult?: SslScanResult, sslManualOverride?: SslManualOverride, lockedOrientation?: LockedOrientation, isSafeFrameCompatible?: boolean, advertiserId?: number, id?: number, name?: string, size?: any, previewUrl?: string, policyViolations?: any, appliedLabels?: any, lastModifiedDateTime?: any, customFieldValues?: any);
}