sinch-rtc
Version:
RTC JavaScript/Web SDK
25 lines (24 loc) • 714 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.
*/
/**
*
* @export
* @enum {string}
*/
export declare enum RelayProtocol {
Udp = "udp",
Tcp = "tcp",
Tls = "tls"
}
export declare function RelayProtocolFromJSON(json: any): RelayProtocol;
export declare function RelayProtocolFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelayProtocol;
export declare function RelayProtocolToJSON(value?: RelayProtocol | null): any;