Interface Proxy

Contains information about a proxy server.

interface Proxy {
    @type: "proxy";
    id: number;
    is_enabled?: boolean;
    last_used_date: number;
    port: number;
    server: string;
    type: ProxyType;
}

Properties

@type: "proxy"
id: number

Unique identifier of the proxy.

is_enabled?: boolean

True, if the proxy is enabled now.

last_used_date: number

Point in time (Unix timestamp) when the proxy was last used; 0 if never.

port: number

Proxy server port.

server: string

Proxy server domain or IP address.

type: ProxyType

Type of the proxy.