intercom-client
Version:
Official Node bindings to the Intercom API
15 lines (14 loc) • 490 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* deleted custom object instance object
*/
export interface CustomObjectInstanceDeleted {
/** The unique identifier of the Custom Object type that defines the structure of the Custom Object instance. */
object?: string;
/** The Intercom defined id representing the Custom Object instance. */
id?: string;
/** Whether the Custom Object instance is deleted or not. */
deleted?: boolean;
}