intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 487 B
text/typescript
/**
* @example
* {
* custom_object_type_identifier: "Order",
* custom_object_instance_id: "custom_object_instance_id"
* }
*/
export interface DeleteCustomObjectInstancesByExternalIdRequest {
/** The unique identifier of the custom object type that defines the structure of the custom object instance. */
custom_object_type_identifier: string;
/** The Intercom defined id of the custom object instance */
custom_object_instance_id: string;
}