/** * 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. */ import type { DeviceMemorySpoofingType } from "./DeviceMemorySpoofingType"; /** * * @export * @interface DeviceMemoryChoice */ export interface DeviceMemoryChoice { /** * Specifies how the deviceMemory will be spoofed. Possible values: * 'automatic': Automatically set the values based on the fingerprint. * 'manual': Manually set the value in the profile. Valid values: 0.25, 0.5, 1, 2, 4, 8, 16, 32. * 'off': Turn off the spoofing, use the original settings. * @type {DeviceMemorySpoofingType} * @memberof DeviceMemoryChoice */ value: DeviceMemorySpoofingType; /** * * @type {number} * @memberof DeviceMemoryChoice */ extra?: number | null; } /** * Check if a given object implements the DeviceMemoryChoice interface. */ export declare function instanceOfDeviceMemoryChoice(value: object): value is DeviceMemoryChoice; export declare function DeviceMemoryChoiceFromJSON(json: any): DeviceMemoryChoice; export declare function DeviceMemoryChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceMemoryChoice; export declare function DeviceMemoryChoiceToJSON(json: any): DeviceMemoryChoice; export declare function DeviceMemoryChoiceToJSONTyped(value?: DeviceMemoryChoice | null, ignoreDiscriminator?: boolean): any;