intercom-client
Version:
Official Node bindings to the Intercom API
12 lines (11 loc) • 381 B
TypeScript
/**
* Response returned when an object is deleted
*/
export interface DeletedCollectionObject {
/** The unique identifier for the collection which you provided in the URL. */
id?: string;
/** The type of object which was deleted. - `collection` */
object?: "collection";
/** Whether the collection was deleted successfully or not. */
deleted?: boolean;
}