UNPKG

gads

Version:

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

14 lines (13 loc) 518 B
import { Creative } from './creative'; import { LockedOrientation } from './lockedOrientation'; import { SslManualOverride } from './sslManualOverride'; import { SslScanResult } from './sslScanResult'; export interface ThirdPartyCreative extends Creative { snippet?: string; expandedSnippet?: string; sslScanResult?: SslScanResult; sslManualOverride?: SslManualOverride; lockedOrientation?: LockedOrientation; isSafeFrameCompatible?: boolean; thirdPartyImpressionTrackingUrls?: string[]; }