dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 462 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { CreativeAsset } from './creativeAsset';
import { Html5Feature } from './html5Feature';
export declare class SwiffyFallbackAsset extends XMLElement {
protected static XSI_TYPE: string;
asset: CreativeAsset;
html5Features: Html5Feature[];
localizedInfoMessages: string[];
constructor(asset?: CreativeAsset, html5Features?: Html5Feature[], localizedInfoMessages?: string[]);
}