UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

13 lines (12 loc) 377 B
/** * @example * { * custom_object_type_identifier: "Order", * external_id: "external_id" * } */ export interface GetCustomObjectInstancesByExternalIdRequest { /** The unique identifier of the custom object type that defines the structure of the custom object instance. */ custom_object_type_identifier: string; external_id: string; }