UNPKG

ch-api-client-typescript2

Version:
62 lines 1.36 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 { CallStatus } from './call-status'; /** * * @export * @interface CreateCallHistoryCommand */ export interface CreateCallHistoryCommand { /** * * @type {string} * @memberof CreateCallHistoryCommand */ 'callId'?: string; /** * * @type {string} * @memberof CreateCallHistoryCommand */ 'patientId'?: string; /** * * @type {string} * @memberof CreateCallHistoryCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreateCallHistoryCommand */ 'contactId'?: string; /** * * @type {boolean} * @memberof CreateCallHistoryCommand */ 'isExternal'?: boolean; /** * * @type {CallStatus} * @memberof CreateCallHistoryCommand */ 'status'?: CallStatus; /** * * @type {Date} * @memberof CreateCallHistoryCommand */ 'timeStamp'?: Date; } //# sourceMappingURL=create-call-history-command.d.ts.map