/** * 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 WebRTC will be spoofed. Possible values: * 'automatic': Automatically set the webRTC public IP by the IP * 'manual': Manually override the webRTC public IP and private IP in the profile * 'block': Block the WebRTC functionality * 'off': Turn off the spoofing, use the original settings * @export */ export declare const WebRtcSpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Block: "block"; readonly Off: "off"; }; export type WebRtcSpoofingType = (typeof WebRtcSpoofingType)[keyof typeof WebRtcSpoofingType]; export declare function instanceOfWebRtcSpoofingType(value: any): boolean; export declare function WebRtcSpoofingTypeFromJSON(json: any): WebRtcSpoofingType; export declare function WebRtcSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebRtcSpoofingType; export declare function WebRtcSpoofingTypeToJSON(value?: WebRtcSpoofingType | null): any; export declare function WebRtcSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): WebRtcSpoofingType;