1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Lethean VPN
*
* Distributed Virtual Private Marketplace
*
* The version of the OpenAPI document: 1.2.1
* Contact: contact@lethean.io
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProxySettingsEntity {
/// IP Address of endpoints for Proxy service only
#[serde(rename = "endpoint")]
pub endpoint: String,
/// Port available on endpoint
#[serde(rename = "port")]
pub port: String,
/// Terms for the service
#[serde(rename = "terms")]
pub terms: String,
/// a JSON containing access policy - whitelist/blacklist default, allowed/blocked IPs and FQDNs in regex format. This is NOT sent to SDP. It is used by the Dispatcher to orchestrate restrictions on Server
#[serde(rename = "policy")]
pub policy: Vec<String>,
}
impl ProxySettingsEntity {
pub fn new(endpoint: String, port: String, terms: String, policy: Vec<String>) -> ProxySettingsEntity {
ProxySettingsEntity {
endpoint,
port,
terms,
policy,
}
}
}