gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
10 lines (9 loc) • 389 B
TypeScript
import { BaseFlashCreative } from './baseFlashCreative';
import { LockedOrientation } from './lockedOrientation';
import { SwiffyFallbackAsset } from './swiffyFallbackAsset';
export interface FlashCreative extends BaseFlashCreative {
swiffyAsset?: SwiffyFallbackAsset;
createSwiffyAsset?: boolean;
lockedOrientation?: LockedOrientation;
clickTagOverlayEnabled?: boolean;
}