UNPKG

ch-admin-api-client-typescript

Version:
87 lines 2.03 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 { SurveyFormElementInputModel } from './survey-form-element-input-model'; import { SurveyFormStatus } from './survey-form-status'; /** * * @export * @interface CreateSurveyFormCommand */ export interface CreateSurveyFormCommand { /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'hospitalId'?: string; /** * * @type {SurveyFormStatus} * @memberof CreateSurveyFormCommand */ 'status'?: SurveyFormStatus; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'urlAfterDone'?: string | null; /** * * @type {boolean} * @memberof CreateSurveyFormCommand */ 'isShared'?: boolean | null; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateSurveyFormCommand */ 'description'?: string | null; /** * * @type {boolean} * @memberof CreateSurveyFormCommand */ 'isConfirmed'?: boolean; /** * * @type {Array<SurveyFormElementInputModel>} * @memberof CreateSurveyFormCommand */ 'elements'?: Array<SurveyFormElementInputModel> | null; } //# sourceMappingURL=create-survey-form-command.d.ts.map