UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

24 lines (23 loc) 702 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. */ /** * Call direction * @export * @enum {string} */ export declare enum Direction { Inbound = "inbound", Outbound = "outbound" } export declare function DirectionFromJSON(json: any): Direction; export declare function DirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Direction; export declare function DirectionToJSON(value?: Direction | null): any;