intercom-client
Version:
Official Node bindings to the Intercom API
23 lines (22 loc) • 579 B
TypeScript
import type * as Intercom from "../../../../index.js";
/**
* @example
* {
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632",
* body: {
* name: "my company",
* website: "http://www.mycompany.com/"
* }
* }
*
* @example
* {
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632",
* body: {}
* }
*/
export interface UpdateCompanyRequest {
/** The unique identifier for the company which is given by Intercom */
company_id: string;
body?: Intercom.UpdateCompanyRequestBody;
}