UNPKG

ch-admin-api-client-typescript

Version:
137 lines 3 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 { ArticleType } from './article-type'; import { MediaModel } from './media-model'; /** * * @export * @interface UpdateArticleCommand */ export interface UpdateArticleCommand { /** * * @type {string} * @memberof UpdateArticleCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'content'?: string | null; /** * * @type {ArticleStatus} * @memberof UpdateArticleCommand */ 'status'?: ArticleStatus; /** * * @type {ArticleType} * @memberof UpdateArticleCommand */ 'articleType'?: ArticleType; /** * * @type {string} * @memberof UpdateArticleCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof UpdateArticleCommand */ 'specialtyTypeId'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'youtubeUrl'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'background'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'customStyle'?: string | null; /** * * @type {Array<ArticleTagItemModel>} * @memberof UpdateArticleCommand */ 'articleTags'?: Array<ArticleTagItemModel> | null; /** * * @type {string} * @memberof UpdateArticleCommand */ 'languageCode'?: string | null; /** * * @type {boolean} * @memberof UpdateArticleCommand */ 'confirmed'?: boolean; /** * * @type {Array<MediaModel>} * @memberof UpdateArticleCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-article-command.d.ts.map