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