sinch-rtc
Version:
RTC JavaScript/Web SDK
51 lines (50 loc) • 1.19 kB
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 { Domain } from './';
/**
* Call destination specification
* @export
* @interface Destination
*/
export interface Destination {
/**
*
* @type {Domain}
* @memberof Destination
*/
domain: Domain;
/**
*
* @type {string}
* @memberof Destination
*/
type: DestinationTypeEnum;
/**
*
* @type {string}
* @memberof Destination
*/
identity: string;
}
/**
* @export
* @enum {string}
*/
export declare enum DestinationTypeEnum {
UserId = "userId",
Phonenumber = "phonenumber",
Conference = "conference",
Sip = "sip"
}
export declare function DestinationFromJSON(json: any): Destination;
export declare function DestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Destination;
export declare function DestinationToJSON(value?: Destination | null): any;