sinch-rtc
Version:
RTC JavaScript/Web SDK
35 lines (34 loc) • 998 B
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 { Config, Instance } from './';
/**
*
* @export
* @interface CreateInstanceResponse
*/
export interface CreateInstanceResponse {
/**
*
* @type {Instance}
* @memberof CreateInstanceResponse
*/
instance: Instance;
/**
*
* @type {Config}
* @memberof CreateInstanceResponse
*/
config: Config;
}
export declare function CreateInstanceResponseFromJSON(json: any): CreateInstanceResponse;
export declare function CreateInstanceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateInstanceResponse;
export declare function CreateInstanceResponseToJSON(value?: CreateInstanceResponse | null): any;