/** * 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; }