UNPKG

ch-admin-api-client-typescript

Version:
74 lines 1.7 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ArticleType } from './article-type'; /** * * @export * @interface CreateArticleCategoryCommand */ export interface CreateArticleCategoryCommand { /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'languageCode'?: string | null; /** * * @type {ArticleType} * @memberof CreateArticleCategoryCommand */ 'articleType'?: ArticleType; /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'parentArticleCategoryId'?: string | null; /** * * @type {number} * @memberof CreateArticleCategoryCommand */ 'order'?: number; /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateArticleCategoryCommand */ 'overview'?: string | null; /** * * @type {boolean} * @memberof CreateArticleCategoryCommand */ 'isConfirmed'?: boolean; } //# sourceMappingURL=create-article-category-command.d.ts.map