ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
142 lines • 3.03 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 { AuditableEntityModel } from './auditable-entity-model';
import { MediaModel } from './media-model';
import { ReviewType } from './review-type';
/**
*
* @export
* @interface ServiceReviewItemModel
*/
export interface ServiceReviewItemModel {
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'id'?: string;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'languageCode'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'slug'?: string | null;
/**
*
* @type {boolean}
* @memberof ServiceReviewItemModel
*/
'confirmed'?: boolean;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'serviceId'?: string;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'serviceName'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'serviceSlug'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'hospitalId'?: string;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'hospitalName'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'patientId'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'patientName'?: string | null;
/**
*
* @type {string}
* @memberof ServiceReviewItemModel
*/
'displayPatientName'?: string | null;
/**
*
* @type {boolean}
* @memberof ServiceReviewItemModel
*/
'recommended'?: boolean;
/**
*
* @type {number}
* @memberof ServiceReviewItemModel
*/
'rate'?: number;
/**
*
* @type {number}
* @memberof ServiceReviewItemModel
*/
'order'?: number;
/**
*
* @type {Date}
* @memberof ServiceReviewItemModel
*/
'surgeryDate'?: Date | null;
/**
*
* @type {ReviewType}
* @memberof ServiceReviewItemModel
*/
'reviewType'?: ReviewType;
/**
*
* @type {Array<MediaModel>}
* @memberof ServiceReviewItemModel
*/
'medias'?: Array<MediaModel> | null;
/**
*
* @type {AuditableEntityModel}
* @memberof ServiceReviewItemModel
*/
'auditableEntity'?: AuditableEntityModel;
}
//# sourceMappingURL=service-review-item-model.d.ts.map