intercom-client
Version:
Official Node bindings to the Intercom API
12 lines (11 loc) • 354 B
text/typescript
/**
* An object containing data about the companies that a contact is associated with.
*/
export interface CompanyData {
/** The unique identifier for the company which is given by Intercom. */
id?: string;
/** The type of the object. Always company. */
type?: "company";
/** The relative URL of the company. */
url?: string;
}