intercom-client
Version:
Official Node bindings to the Intercom API
15 lines (14 loc) • 356 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* A reference to a company associated with a contact
*/
export interface ContactCompany {
/** The unique identifier for the company */
id: string;
/** The type of the object */
type: "company";
/** URL to get the full company resource */
url: string;
}