@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
39 lines (38 loc) • 1.02 kB
TypeScript
export declare enum Status {
UNINVITED = "UNINVITED",
INVITE_PENDNG = "INVITE_PENDNG",
INVITE_EXPIRED = "INVITE_EXPIRED",
INVITE_CANCELED = "INVITE_CANCELED",
USER_ACTIVE = "USER_ACTIVE",
USER_DISABLED = "USER_DISABLED",
UNKNOWN = "UNKNOWN"
}
/**
* contacts
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface Contacts {
/** xsd:long */
id?: number;
/** xsd:string */
name?: string;
/** xsd:long */
companyId?: number;
/** Contact.Status|xsd:string|UNINVITED,INVITE_PENDNG,INVITE_EXPIRED,INVITE_CANCELED,USER_ACTIVE,USER_DISABLED,UNKNOWN */
status?: Status | keyof typeof Status;
/** xsd:string */
address?: string;
/** xsd:string */
cellPhone?: string;
/** xsd:string */
comment?: string;
/** xsd:string */
email?: string;
/** xsd:string */
faxPhone?: string;
/** xsd:string */
title?: string;
/** xsd:string */
workPhone?: string;
}