/** * 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 { HardwareConcurrencySpoofingType } from "./HardwareConcurrencySpoofingType"; /** * * @export * @interface HardwareConcurrencyChoice */ export interface HardwareConcurrencyChoice { /** * Specifies how the hardwareConcurrency will be spoofed. Possible values: * 'automatic': Automatically set the values based on the fingerprint. * 'manual': Manually set the value in the profile. Valid values: 1, 2, 4, 8, 12, 16. * 'off': Turn off the spoofing, use the original settings. * @type {HardwareConcurrencySpoofingType} * @memberof HardwareConcurrencyChoice */ value: HardwareConcurrencySpoofingType; /** * * @type {number} * @memberof HardwareConcurrencyChoice */ extra?: number | null; } /** * Check if a given object implements the HardwareConcurrencyChoice interface. */ export declare function instanceOfHardwareConcurrencyChoice(value: object): value is HardwareConcurrencyChoice; export declare function HardwareConcurrencyChoiceFromJSON(json: any): HardwareConcurrencyChoice; export declare function HardwareConcurrencyChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): HardwareConcurrencyChoice; export declare function HardwareConcurrencyChoiceToJSON(json: any): HardwareConcurrencyChoice; export declare function HardwareConcurrencyChoiceToJSONTyped(value?: HardwareConcurrencyChoice | null, ignoreDiscriminator?: boolean): any;