UNPKG

ch-admin-api-client-typescript

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