UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

12 lines (11 loc) 613 B
import { HasDestinationUrlCreative } from './hasDestinationUrlCreative'; import { CreativeAsset } from './creativeAsset'; import { DestinationUrlType } from './destinationUrlType'; export declare class AspectRatioImageCreative extends HasDestinationUrlCreative { protected static XSI_TYPE: string; imageAssets: CreativeAsset[]; altText: string; thirdPartyImpressionUrl: string; overrideSize: boolean; constructor(imageAssets?: CreativeAsset[], altText?: string, thirdPartyImpressionUrl?: string, overrideSize?: boolean, destinationUrl?: string, destinationUrlType?: DestinationUrlType); }