/** * 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. */ /** * When the Geolocation spoofing is set to manual these extra settings will be used as well. * @export * @interface GeolocationSpoofingOptions */ export interface GeolocationSpoofingOptions { /** * From -90 to 90 * @type {number} * @memberof GeolocationSpoofingOptions */ latitude: number; /** * From -180 to 180 * @type {number} * @memberof GeolocationSpoofingOptions */ longitude: number; } /** * Check if a given object implements the GeolocationSpoofingOptions interface. */ export declare function instanceOfGeolocationSpoofingOptions(value: object): value is GeolocationSpoofingOptions; export declare function GeolocationSpoofingOptionsFromJSON(json: any): GeolocationSpoofingOptions; export declare function GeolocationSpoofingOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeolocationSpoofingOptions; export declare function GeolocationSpoofingOptionsToJSON(json: any): GeolocationSpoofingOptions; export declare function GeolocationSpoofingOptionsToJSONTyped(value?: GeolocationSpoofingOptions | null, ignoreDiscriminator?: boolean): any;