UNPKG

ch-admin-api-client-typescript

Version:
81 lines 1.79 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 { SurveyFormStatus } from './survey-form-status'; /** * * @export * @interface SurveyFormItemModel */ export interface SurveyFormItemModel { /** * * @type {string} * @memberof SurveyFormItemModel */ 'id'?: string; /** * * @type {string} * @memberof SurveyFormItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof SurveyFormItemModel */ 'hospitalName'?: string | null; /** * * @type {SurveyFormStatus} * @memberof SurveyFormItemModel */ 'status'?: SurveyFormStatus; /** * * @type {string} * @memberof SurveyFormItemModel */ 'urlAfterDone'?: string | null; /** * * @type {boolean} * @memberof SurveyFormItemModel */ 'isShared'?: boolean; /** * * @type {string} * @memberof SurveyFormItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof SurveyFormItemModel */ 'name'?: string | null; /** * * @type {boolean} * @memberof SurveyFormItemModel */ 'isConfirmed'?: boolean; /** * * @type {AuditableEntityModel} * @memberof SurveyFormItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=survey-form-item-model.d.ts.map