dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 513 B
TypeScript
import { HasDestinationUrlCreative } from './hasDestinationUrlCreative';
import { CreativeAsset } from './creativeAsset';
import { DestinationUrlType } from './destinationUrlType';
export declare abstract class BaseImageCreative extends HasDestinationUrlCreative {
protected static XSI_TYPE: string;
overrideSize: boolean;
primaryImageAsset: CreativeAsset;
constructor(overrideSize?: boolean, primaryImageAsset?: CreativeAsset, destinationUrl?: string, destinationUrlType?: DestinationUrlType);
}