/** * 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 { TimezoneSpoofingType } from "./TimezoneSpoofingType"; /** * * @export * @interface TimezoneChoice */ export interface TimezoneChoice { /** * Specifies how the timezone will be spoofed. Possble values: * 'automatic': Timezone is automatically set by the IP * 'manual': Timezone is manually overridden in the profile * 'off': Turn off the spoofing, use the original settings * @type {TimezoneSpoofingType} * @memberof TimezoneChoice */ value: TimezoneSpoofingType; /** * When the Timezone spoofing is set to manual the timezone in Iana format is required. For example: America/Grenada * @type {string} * @memberof TimezoneChoice */ extra?: string | null; } /** * Check if a given object implements the TimezoneChoice interface. */ export declare function instanceOfTimezoneChoice(value: object): value is TimezoneChoice; export declare function TimezoneChoiceFromJSON(json: any): TimezoneChoice; export declare function TimezoneChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimezoneChoice; export declare function TimezoneChoiceToJSON(json: any): TimezoneChoice; export declare function TimezoneChoiceToJSONTyped(value?: TimezoneChoice | null, ignoreDiscriminator?: boolean): any;