intercom-client
Version:
Official Node bindings to the Intercom API
13 lines (12 loc) • 372 B
text/typescript
/**
* @example
* {
* custom_object_type_identifier: "Order",
* external_id: "external_id"
* }
*/
export interface DeleteCustomObjectInstancesByIdRequest {
/** 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;
}