UNPKG

ch-api-client-typescript2

Version:
80 lines 1.75 kB
/** * 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 { ReviewType } from './review-type'; /** * * @export * @interface CreateServiceReviewCommand */ export interface CreateServiceReviewCommand { /** * * @type {string} * @memberof CreateServiceReviewCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreateServiceReviewCommand */ 'serviceId'?: string; /** * * @type {string} * @memberof CreateServiceReviewCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateServiceReviewCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateServiceReviewCommand */ 'content'?: string | null; /** * * @type {boolean} * @memberof CreateServiceReviewCommand */ 'recommended'?: boolean; /** * * @type {number} * @memberof CreateServiceReviewCommand */ 'rate'?: number; /** * * @type {number} * @memberof CreateServiceReviewCommand */ 'order'?: number; /** * * @type {Date} * @memberof CreateServiceReviewCommand */ 'surgeryDate'?: Date; /** * * @type {ReviewType} * @memberof CreateServiceReviewCommand */ 'reviewType'?: ReviewType; } //# sourceMappingURL=create-service-review-command.d.ts.map