/** * 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. */ /** * 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. * @export */ export declare const DeviceMemorySpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Off: "off"; }; export type DeviceMemorySpoofingType = (typeof DeviceMemorySpoofingType)[keyof typeof DeviceMemorySpoofingType]; export declare function instanceOfDeviceMemorySpoofingType(value: any): boolean; export declare function DeviceMemorySpoofingTypeFromJSON(json: any): DeviceMemorySpoofingType; export declare function DeviceMemorySpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceMemorySpoofingType; export declare function DeviceMemorySpoofingTypeToJSON(value?: DeviceMemorySpoofingType | null): any; export declare function DeviceMemorySpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DeviceMemorySpoofingType;