/**
 * 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 { InstanceVersionData } from './';
/**
 *
 * @export
 * @interface Instance
 */
export interface Instance {
    /**
     *
     * @type {string}
     * @memberof Instance
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof Instance
     */
    secret: string;
    /**
     *
     * @type {string}
     * @memberof Instance
     */
    deviceId?: string;
    /**
     *
     * @type {Date}
     * @memberof Instance
     */
    expireAt: Date;
    /**
     *
     * @type {Array<string>}
     * @memberof Instance
     */
    capabilities: Array<string>;
    /**
     *
     * @type {InstanceVersionData}
     * @memberof Instance
     */
    version: InstanceVersionData;
}
export declare function InstanceFromJSON(json: any): Instance;
export declare function InstanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Instance;
export declare function InstanceToJSON(value?: Instance | null): any;
