UNPKG

ch-admin-api-client-typescript

Version:
118 lines 2.6 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 { ArticleTagItemModel } from './article-tag-item-model'; import { MediaModel } from './media-model'; /** * * @export * @interface CreateArticleCommand */ export interface CreateArticleCommand { /** * * @type {string} * @memberof CreateArticleCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'markdown'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreateArticleCommand */ 'specialtyTypeId'?: string | null; /** * * @type {ArticleStatus} * @memberof CreateArticleCommand */ 'status'?: ArticleStatus; /** * * @type {string} * @memberof CreateArticleCommand */ 'youtubeUrl'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'background'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof CreateArticleCommand */ 'customStyle'?: string | null; /** * * @type {Array<ArticleTagItemModel>} * @memberof CreateArticleCommand */ 'articleTags'?: Array<ArticleTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof CreateArticleCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=create-article-command.d.ts.map