/** * 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 WebRTC spoofing is set to manual these extra settings will be used as well. * @export * @interface WebRtcSpoofingOptions */ export interface WebRtcSpoofingOptions { /** * The WebRTC public IP address of the machine. * @type {string} * @memberof WebRtcSpoofingOptions */ publicIp: string; } /** * Check if a given object implements the WebRtcSpoofingOptions interface. */ export declare function instanceOfWebRtcSpoofingOptions(value: object): value is WebRtcSpoofingOptions; export declare function WebRtcSpoofingOptionsFromJSON(json: any): WebRtcSpoofingOptions; export declare function WebRtcSpoofingOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebRtcSpoofingOptions; export declare function WebRtcSpoofingOptionsToJSON(json: any): WebRtcSpoofingOptions; export declare function WebRtcSpoofingOptionsToJSONTyped(value?: WebRtcSpoofingOptions | null, ignoreDiscriminator?: boolean): any;