/** * @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; }