UNPKG

ch-admin-api-client-typescript

Version:
105 lines 2.08 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 NoticeModel */ export interface NoticeModel { /** * * @type {string} * @memberof NoticeModel */ 'id'?: string; /** * * @type {string} * @memberof NoticeModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof NoticeModel */ 'languageCode'?: string | null; /** * * @type {NoticeStatus} * @memberof NoticeModel */ 'status'?: NoticeStatus; /** * * @type {number} * @memberof NoticeModel */ 'order'?: number; /** * * @type {AuditableEntityModel} * @memberof NoticeModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {string} * @memberof NoticeModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof NoticeModel */ 'name'?: string | null; /** * * @type {string} * @memberof NoticeModel */ 'slug'?: string | null; /** * * @type {string} * @memberof NoticeModel */ 'url'?: string | null; /** * * @type {string} * @memberof NoticeModel */ 'description'?: string | null; /** * * @type {boolean} * @memberof NoticeModel */ 'isConfirmed'?: boolean; /** * * @type {string} * @memberof NoticeModel */ 'overview'?: string | null; /** * * @type {string} * @memberof NoticeModel */ 'content'?: string | null; } //# sourceMappingURL=notice-model.d.ts.map