UNPKG

ch-admin-api-client-typescript

Version:
62 lines 1.35 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 { NoticeStatus } from './notice-status'; /** * * @export * @interface UpdateNoticeCommand */ export interface UpdateNoticeCommand { /** * * @type {NoticeStatus} * @memberof UpdateNoticeCommand */ 'status'?: NoticeStatus; /** * * @type {number} * @memberof UpdateNoticeCommand */ 'order'?: number | null; /** * * @type {string} * @memberof UpdateNoticeCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdateNoticeCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateNoticeCommand */ 'url'?: string | null; /** * * @type {string} * @memberof UpdateNoticeCommand */ 'description'?: string | null; /** * * @type {boolean} * @memberof UpdateNoticeCommand */ 'isConfirmed'?: boolean; } //# sourceMappingURL=update-notice-command.d.ts.map