/**
 * 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 { PlatformIdentifier } from './';
/**
 * Device and application version information
 * @export
 * @interface InstanceVersionData
 */
export interface InstanceVersionData {
    /**
     *
     * @type {PlatformIdentifier}
     * @memberof InstanceVersionData
     */
    platform: PlatformIdentifier;
    /**
     * OS name + version information (if available)
     * @type {string}
     * @memberof InstanceVersionData
     */
    os: string;
    /**
     * OS name (if implementation can reliably detect OS, e.g. Web/JS cannot.)
     * @type {string}
     * @memberof InstanceVersionData
     */
    osName?: string;
    /**
     * OS version string (if implementation can reliably detect OS, e.g. Web/JS cannot.)
     * @type {string}
     * @memberof InstanceVersionData
     */
    osVersion?: string;
    /**
     * Application in this context may be the Sinch SDK
     * @type {string}
     * @memberof InstanceVersionData
     */
    application: string;
    /**
     *
     * @type {string}
     * @memberof InstanceVersionData
     */
    deviceModelId: string;
    /**
     *
     * @type {string}
     * @memberof InstanceVersionData
     */
    deviceModelName: string;
}
export declare function InstanceVersionDataFromJSON(json: any): InstanceVersionData;
export declare function InstanceVersionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstanceVersionData;
export declare function InstanceVersionDataToJSON(value?: InstanceVersionData | null): any;
