UNPKG

ch-admin-api-client-typescript

Version:
116 lines 2.44 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 { FormFieldOptionInputModel } from './form-field-option-input-model'; /** * * @export * @interface FormFieldInputModel */ export interface FormFieldInputModel { /** * * @type {string} * @memberof FormFieldInputModel */ 'formFieldType'?: string | null; /** * * @type {boolean} * @memberof FormFieldInputModel */ 'isRequired'?: boolean; /** * * @type {boolean} * @memberof FormFieldInputModel */ 'isHidden'?: boolean; /** * * @type {boolean} * @memberof FormFieldInputModel */ 'isPublic'?: boolean; /** * * @type {string} * @memberof FormFieldInputModel */ 'validation'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'customStyle'?: string | null; /** * * @type {number} * @memberof FormFieldInputModel */ 'order'?: number; /** * * @type {string} * @memberof FormFieldInputModel */ 'name'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'description'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'overview'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'content'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'label'?: string | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'placeholder'?: string | null; /** * * @type {boolean} * @memberof FormFieldInputModel */ 'isConfirmed'?: boolean; /** * * @type {Array<FormFieldOptionInputModel>} * @memberof FormFieldInputModel */ 'options'?: Array<FormFieldOptionInputModel> | null; /** * * @type {string} * @memberof FormFieldInputModel */ 'id'?: string | null; } //# sourceMappingURL=form-field-input-model.d.ts.map