sinch-rtc
Version:
RTC JavaScript/Web SDK
41 lines (40 loc) • 1 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 { ClientErrorDomain } from './';
/**
*
* @export
* @interface ClientError
*/
export interface ClientError {
/**
*
* @type {number}
* @memberof ClientError
*/
code?: number;
/**
*
* @type {ClientErrorDomain}
* @memberof ClientError
*/
domain?: ClientErrorDomain;
/**
*
* @type {string}
* @memberof ClientError
*/
message?: string;
}
export declare function ClientErrorFromJSON(json: any): ClientError;
export declare function ClientErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientError;
export declare function ClientErrorToJSON(value?: ClientError | null): any;