ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
94 lines • 2.21 kB
TypeScript
/**
* 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 { FormSectionInputModel } from './form-section-input-model';
import { FormTemplateStatus } from './form-template-status';
import { FormTemplateType } from './form-template-type';
/**
*
* @export
* @interface SaveFormTemplateCommand
*/
export interface SaveFormTemplateCommand {
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'languageCode'?: string | null;
/**
*
* @type {FormTemplateType}
* @memberof SaveFormTemplateCommand
*/
'formTemplateType'?: FormTemplateType;
/**
*
* @type {FormTemplateStatus}
* @memberof SaveFormTemplateCommand
*/
'status'?: FormTemplateStatus;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'urlAfterDone'?: string | null;
/**
*
* @type {boolean}
* @memberof SaveFormTemplateCommand
*/
'isConfirmed'?: boolean;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'hospitalId'?: string;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'overview'?: string | null;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof SaveFormTemplateCommand
*/
'content'?: string | null;
/**
*
* @type {boolean}
* @memberof SaveFormTemplateCommand
*/
'isShared'?: boolean | null;
/**
*
* @type {Array<FormSectionInputModel>}
* @memberof SaveFormTemplateCommand
*/
'sections'?: Array<FormSectionInputModel> | null;
}
//# sourceMappingURL=save-form-template-command.d.ts.map