dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
9 lines (8 loc) • 542 B
TypeScript
import { Creative } from './creative';
import { DestinationUrlType } from './destinationUrlType';
export declare class HasDestinationUrlCreative extends Creative {
protected static XSI_TYPE: string;
destinationUrl: string;
destinationUrlType: DestinationUrlType;
constructor(destinationUrl?: string, destinationUrlType?: DestinationUrlType, advertiserId?: number, id?: number, name?: string, size?: any, previewUrl?: string, policyViolations?: any, appliedLabels?: any, lastModifiedDateTime?: any, customFieldValues?: any);
}