UNPKG

ch-admin-api-client-typescript

Version:
56 lines 1.3 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 { FormFieldInputModel } from './form-field-input-model'; /** * * @export * @interface FormSectionInputModel */ export interface FormSectionInputModel { /** * * @type {string} * @memberof FormSectionInputModel */ 'customStyle'?: string | null; /** * * @type {number} * @memberof FormSectionInputModel */ 'order'?: number; /** * * @type {Array<FormFieldInputModel>} * @memberof FormSectionInputModel */ 'fields'?: Array<FormFieldInputModel> | null; /** * * @type {string} * @memberof FormSectionInputModel */ 'name'?: string | null; /** * * @type {boolean} * @memberof FormSectionInputModel */ 'isConfirmed'?: boolean; /** * * @type {string} * @memberof FormSectionInputModel */ 'id'?: string | null; } //# sourceMappingURL=form-section-input-model.d.ts.map