intercom-client
Version:
Official Node bindings to the Intercom API
11 lines (10 loc) • 334 B
text/typescript
export interface UpdateArticleRequestBody {
parent_type?: UpdateArticleRequestBody.ParentType;
}
export declare namespace UpdateArticleRequestBody {
const ParentType: {
readonly Collection: "collection";
readonly Section: "section";
};
type ParentType = (typeof ParentType)[keyof typeof ParentType];
}