/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Os */ export interface Os { /** * Specifies the operating system family. Possible values are 'windows', 'macos', 'linux', 'android', 'ios'. * @type {string} * @memberof Os */ family: string; /** * The specific version of the OS. For example it helps you determine the exact version of the macOS. * @type {string} * @memberof Os */ version: string; /** * The OS's platform, indicating the processor architecture (e.g., 64-bit, 32-bit) * @type {string} * @memberof Os */ platform: string; } /** * Check if a given object implements the Os interface. */ export declare function instanceOfOs(value: object): value is Os; export declare function OsFromJSON(json: any): Os; export declare function OsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Os; export declare function OsToJSON(json: any): Os; export declare function OsToJSONTyped(value?: Os | null, ignoreDiscriminator?: boolean): any;