UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

16 lines (15 loc) 386 B
import { BaseContact } from './baseContact'; import { ContactStatus } from './contactStatus'; export interface Contact extends BaseContact { id?: number; name?: string; companyId?: number; status?: ContactStatus; address?: string; cellPhone?: string; comment?: string; email?: string; faxPhone?: string; title?: string; workPhone?: string; }