/** * 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 geolocation will be spoofed. Possible values: * 'automatic': Automatically set the values based on the IP address * 'manual': Manually set the longitude and latitude in the profile * 'block': Completely block the Geolocation API * 'off': Turn off the spoofing, use the original settings * @export */ export declare const GeolocationSpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Block: "block"; readonly Off: "off"; }; export type GeolocationSpoofingType = (typeof GeolocationSpoofingType)[keyof typeof GeolocationSpoofingType]; export declare function instanceOfGeolocationSpoofingType(value: any): boolean; export declare function GeolocationSpoofingTypeFromJSON(json: any): GeolocationSpoofingType; export declare function GeolocationSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeolocationSpoofingType; export declare function GeolocationSpoofingTypeToJSON(value?: GeolocationSpoofingType | null): any; export declare function GeolocationSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): GeolocationSpoofingType;