UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

30 lines (29 loc) 825 B
/** * 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 * as runtime from '../runtime'; import { CallReport } from '../models'; export interface CreateCallReportRequest { callReport: CallReport; } /** * */ export declare class CallReportApi extends runtime.BaseAPI { /** * Submit a call report */ createCallReportRaw(requestParameters: CreateCallReportRequest): Promise<runtime.ApiResponse<void>>; /** * Submit a call report */ createCallReport(requestParameters: CreateCallReportRequest): Promise<void>; }