ch-api-client-typescript2
Version:
Openapi generated typescript-axios client for CloudHospital
120 lines • 2.86 kB
TypeScript
/**
* 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 { LocalizedUrlMetadataModel } from './localized-url-metadata-model';
import { LocalizedUrlModel } from './localized-url-model';
import { SurveyFormAffiliationModel } from './survey-form-affiliation-model';
import { SurveyFormElementModel } from './survey-form-element-model';
import { SurveyFormStatus } from './survey-form-status';
/**
*
* @export
* @interface SurveyFormModel
*/
export interface SurveyFormModel {
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'id'?: string;
/**
*
* @type {Array<SurveyFormAffiliationModel>}
* @memberof SurveyFormModel
*/
'surveyFormAffiliations'?: Array<SurveyFormAffiliationModel> | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'hospitalName'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'hospitalWebsiteUrl'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'hospitalLogo'?: string | null;
/**
*
* @type {SurveyFormStatus}
* @memberof SurveyFormModel
*/
'status'?: SurveyFormStatus;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'urlAfterDone'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'languageCode'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'overview'?: string | null;
/**
*
* @type {string}
* @memberof SurveyFormModel
*/
'content'?: string | null;
/**
*
* @type {Array<string>}
* @memberof SurveyFormModel
*/
'translatedLanguages'?: Array<string> | null;
/**
*
* @type {Array<SurveyFormElementModel>}
* @memberof SurveyFormModel
*/
'elements'?: Array<SurveyFormElementModel> | null;
/**
*
* @type {Array<LocalizedUrlModel>}
* @memberof SurveyFormModel
*/
'localizedUrls'?: Array<LocalizedUrlModel> | null;
/**
*
* @type {Array<LocalizedUrlMetadataModel>}
* @memberof SurveyFormModel
*/
'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null;
}
//# sourceMappingURL=survey-form-model.d.ts.map