UNPKG

ch-admin-api-client-typescript

Version:
156 lines 3.33 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 { AuditableEntityModel } from './auditable-entity-model'; import { MediaModel } from './media-model'; /** * * @export * @interface ArticleItemModel */ export interface ArticleItemModel { /** * * @type {string} * @memberof ArticleItemModel */ 'id'?: string; /** * * @type {string} * @memberof ArticleItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof ArticleItemModel */ 'confirmed'?: boolean; /** * * @type {ArticleType} * @memberof ArticleItemModel */ 'articleType'?: ArticleType; /** * * @type {string} * @memberof ArticleItemModel */ 'userId'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'userName'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof ArticleItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'youtubeUrl'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'background'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'backgroundThumbnail'?: string | null; /** * * @type {ArticleStatus} * @memberof ArticleItemModel */ 'status'?: ArticleStatus; /** * * @type {string} * @memberof ArticleItemModel */ 'specialtyTypeId'?: string | null; /** * * @type {string} * @memberof ArticleItemModel */ 'specialtyTypeName'?: string | null; /** * * @type {Array<ArticleTagItemModel>} * @memberof ArticleItemModel */ 'articleTags'?: Array<ArticleTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof ArticleItemModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {AuditableEntityModel} * @memberof ArticleItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=article-item-model.d.ts.map