/**
 * 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 { IceCandidate } from './';
/**
 *
 * @export
 * @interface ConnectionInfo
 */
export interface ConnectionInfo {
    /**
     *
     * @type {IceCandidate}
     * @memberof ConnectionInfo
     */
    localIceCandidate: IceCandidate;
    /**
     *
     * @type {IceCandidate}
     * @memberof ConnectionInfo
     */
    remoteIceCandidate: IceCandidate;
    /**
     * Time these connections were determined as the currently active connections
     * @type {Date}
     * @memberof ConnectionInfo
     */
    timestamp: Date;
}
export declare function ConnectionInfoFromJSON(json: any): ConnectionInfo;
export declare function ConnectionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectionInfo;
export declare function ConnectionInfoToJSON(value?: ConnectionInfo | null): any;
