/**
 * 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.
 */
/**
 * Platform information, e.g. iOS, Android, JavaScript/web.
 * @export
 * @enum {string}
 */
export declare enum PlatformIdentifier {
    Ios = "ios",
    Android = "android",
    Js = "js",
    Test = "test"
}
export declare function PlatformIdentifierFromJSON(json: any): PlatformIdentifier;
export declare function PlatformIdentifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlatformIdentifier;
export declare function PlatformIdentifierToJSON(value?: PlatformIdentifier | null): any;
