UNPKG

dfp-lib

Version:

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

18 lines (17 loc) 634 B
import { BaseContact } from './baseContact'; import { ContactStatus } from './contactStatus'; export declare class Contact extends BaseContact { protected static XSI_TYPE: string; id: number; name: string; companyId: number; status: ContactStatus; address: string; cellPhone: string; comment: string; email: string; faxPhone: string; title: string; workPhone: string; constructor(id?: number, name?: string, companyId?: number, status?: ContactStatus, address?: string, cellPhone?: string, comment?: string, email?: string, faxPhone?: string, title?: string, workPhone?: string); }