UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

28 lines (27 loc) 806 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 * @enum {string} */ export declare enum IceCandidateType { Host = "host", Srflx = "srflx", Prflx = "prflx", Relay = "relay", Local = "local", Stun = "stun" } export declare function IceCandidateTypeFromJSON(json: any): IceCandidateType; export declare function IceCandidateTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): IceCandidateType; export declare function IceCandidateTypeToJSON(value?: IceCandidateType | null): any;