UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

20 lines (19 loc) 947 B
/** * You can update a Company */ export interface UpdateCompanyRequestBody { /** The name of the Company */ name?: string; /** The name of the plan you have associated with the company. */ plan?: string; /** The number of employees in this company. */ size?: number; /** The URL for this company's website. Please note that the value specified here is not validated. Accepts any string. */ website?: string; /** The industry that this company operates in. */ industry?: string; /** A hash of key/value pairs containing any other data about the company you want Intercom to store. */ custom_attributes?: Record<string, string>; /** How much revenue the company generates for your business. Note that this will truncate floats. i.e. it only allow for whole integers, 155.98 will be truncated to 155. Note that this has an upper limit of 2**31-1 or 2147483647.. */ monthly_spend?: number; }