UNPKG

ch-admin-api-client-typescript

Version:
131 lines 3.06 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 { ArticleStatus } from './article-status'; import { ArticleType } from './article-type'; import { GeneralArticleTagItemModel } from './general-article-tag-item-model'; import { MediaModel } from './media-model'; /** * * @export * @interface CreateGeneralArticleCommand */ export interface CreateGeneralArticleCommand { /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'articleCategoryId'?: string | null; /** * * @type {ArticleStatus} * @memberof CreateGeneralArticleCommand */ 'status'?: ArticleStatus; /** * * @type {ArticleType} * @memberof CreateGeneralArticleCommand */ 'articleType'?: ArticleType; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'youtubeUrl'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'background'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof CreateGeneralArticleCommand */ 'customStyle'?: string | null; /** * * @type {Array<GeneralArticleTagItemModel>} * @memberof CreateGeneralArticleCommand */ 'tags'?: Array<GeneralArticleTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof CreateGeneralArticleCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=create-general-article-command.d.ts.map