dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 617 B
TypeScript
import { BaseImageCreative } from './baseImageCreative';
import { CreativeAsset } from './creativeAsset';
import { LockedOrientation } from './lockedOrientation';
export declare class ImageCreative extends BaseImageCreative {
protected static XSI_TYPE: string;
altText: string;
thirdPartyImpressionUrl: string;
secondaryImageAssets: CreativeAsset[];
lockedOrientation: LockedOrientation;
constructor(altText?: string, thirdPartyImpressionUrl?: string, secondaryImageAssets?: CreativeAsset[], lockedOrientation?: LockedOrientation, overrideSize?: boolean, primaryImageAsset?: CreativeAsset);
}