UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

40 lines (39 loc) 973 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. */ /** * * @export * @interface ModelError */ export interface ModelError { /** * * @type {number} * @memberof ModelError */ code: number; /** * * @type {string} * @memberof ModelError */ message: string; /** * Unique request reference (trace identifier) * @type {string} * @memberof ModelError */ reference?: string; } export declare function ModelErrorFromJSON(json: any): ModelError; export declare function ModelErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelError; export declare function ModelErrorToJSON(value?: ModelError | null): any;