intercom-client
Version:
Official Node bindings to the Intercom API
12 lines (11 loc) • 417 B
TypeScript
/**
* 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;
}