UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

16 lines (15 loc) 611 B
import { Creative } from './creative'; import { CreativeAsset } from './creativeAsset'; import { LockedOrientation } from './lockedOrientation'; import { SslManualOverride } from './sslManualOverride'; import { SslScanResult } from './sslScanResult'; export interface Html5Creative extends Creative { overrideSize?: boolean; thirdPartyImpressionTrackingUrls?: string[]; thirdPartyClickTrackingUrl?: string; lockedOrientation?: LockedOrientation; sslScanResult?: SslScanResult; sslManualOverride?: SslManualOverride; isSafeFrameCompatible?: boolean; html5Asset?: CreativeAsset; }