UNPKG

dfp-lib

Version:

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

13 lines (12 loc) 467 B
import { XMLElement } from '../../common/soap/xmlElement'; import { DfpDateTime } from './dfpDateTime'; export declare class ProposalLink extends XMLElement { protected static XSI_TYPE: string; id: number; name: string; creatorId: number; url: string; description: string; creationDateTime: DfpDateTime; constructor(id?: number, name?: string, creatorId?: number, url?: string, description?: string, creationDateTime?: DfpDateTime); }