UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

30 lines (29 loc) 874 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 CallResult { Failure = "failure", Timeout = "timeout", Canceled = "canceled", NoAnswer = "noAnswer", OtherPeerAnswered = "otherPeerAnswered", Answered = "answered", Denied = "denied", Established = "established" } export declare function CallResultFromJSON(json: any): CallResult; export declare function CallResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallResult; export declare function CallResultToJSON(value?: CallResult | null): any;