UNPKG

ch-admin-api-client-typescript

Version:
93 lines 1.93 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 { AuditableEntityModel } from './auditable-entity-model'; import { NoticeStatus } from './notice-status'; /** * * @export * @interface NoticeItemModel */ export interface NoticeItemModel { /** * * @type {string} * @memberof NoticeItemModel */ 'id'?: string; /** * * @type {string} * @memberof NoticeItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof NoticeItemModel */ 'languageCode'?: string | null; /** * * @type {NoticeStatus} * @memberof NoticeItemModel */ 'status'?: NoticeStatus; /** * * @type {number} * @memberof NoticeItemModel */ 'order'?: number; /** * * @type {AuditableEntityModel} * @memberof NoticeItemModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {string} * @memberof NoticeItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof NoticeItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof NoticeItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof NoticeItemModel */ 'url'?: string | null; /** * * @type {string} * @memberof NoticeItemModel */ 'description'?: string | null; /** * * @type {boolean} * @memberof NoticeItemModel */ 'isConfirmed'?: boolean; } //# sourceMappingURL=notice-item-model.d.ts.map