UNPKG

ch-api-client-typescript2

Version:
62 lines 1.42 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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 { FormResultFieldModel } from './form-result-field-model'; /** * * @export * @interface FormResultSectionModel */ export interface FormResultSectionModel { /** * * @type {Array<FormResultFieldModel>} * @memberof FormResultSectionModel */ 'fields'?: Array<FormResultFieldModel> | null; /** * * @type {string} * @memberof FormResultSectionModel */ 'id'?: string; /** * * @type {string} * @memberof FormResultSectionModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof FormResultSectionModel */ 'customStyle'?: string | null; /** * * @type {number} * @memberof FormResultSectionModel */ 'order'?: number; /** * * @type {string} * @memberof FormResultSectionModel */ 'name'?: string | null; /** * * @type {boolean} * @memberof FormResultSectionModel */ 'isConfirmed'?: boolean; } //# sourceMappingURL=form-result-section-model.d.ts.map