sinch-rtc
Version:
RTC JavaScript/Web SDK
41 lines (40 loc) • 1.08 kB
TypeScript
/**
* Ocra (REST API for Sinch RTC clients)
* REST API for Sinch RTC clients.
*
* The version of the OpenAPI document: 0.11.0
* Contact: rtc@sinch.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 { InstanceVersionData } from './';
/**
*
* @export
* @interface CallReportInstance
*/
export interface CallReportInstance {
/**
*
* @type {string}
* @memberof CallReportInstance
*/
id: string;
/**
*
* @type {string}
* @memberof CallReportInstance
*/
deviceId?: string;
/**
*
* @type {InstanceVersionData}
* @memberof CallReportInstance
*/
version: InstanceVersionData;
}
export declare function CallReportInstanceFromJSON(json: any): CallReportInstance;
export declare function CallReportInstanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallReportInstance;
export declare function CallReportInstanceToJSON(value?: CallReportInstance | null): any;