ch-api-client-typescript2
Version:
Openapi generated typescript-axios client for CloudHospital
74 lines • 1.62 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 { CallStatus } from './call-status';
/**
*
* @export
* @interface UpdateCallHistoryCommand
*/
export interface UpdateCallHistoryCommand {
/**
*
* @type {string}
* @memberof UpdateCallHistoryCommand
*/
'virtualNumber'?: string | null;
/**
*
* @type {string}
* @memberof UpdateCallHistoryCommand
*/
'targetNumber'?: string | null;
/**
*
* @type {Date}
* @memberof UpdateCallHistoryCommand
*/
'startTime'?: Date | null;
/**
*
* @type {Date}
* @memberof UpdateCallHistoryCommand
*/
'endTime'?: Date | null;
/**
*
* @type {number}
* @memberof UpdateCallHistoryCommand
*/
'duration'?: number | null;
/**
*
* @type {number}
* @memberof UpdateCallHistoryCommand
*/
'rate'?: number | null;
/**
*
* @type {number}
* @memberof UpdateCallHistoryCommand
*/
'price'?: number | null;
/**
*
* @type {CallStatus}
* @memberof UpdateCallHistoryCommand
*/
'status'?: CallStatus;
/**
*
* @type {Date}
* @memberof UpdateCallHistoryCommand
*/
'timeStamp'?: Date;
}
//# sourceMappingURL=update-call-history-command.d.ts.map