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