| 140 | |
| 141 | #[derive(Debug, Serialize, Deserialize)] |
| 142 | pub struct PlatformInfo { |
| 143 | pub os: String, |
| 144 | #[serde(rename = "osVersion")] |
| 145 | pub os_version: String, |
| 146 | #[serde(rename = "cpuArchitecture")] |
| 147 | pub cpu_architecture: String, |
| 148 | #[serde(rename = "webBrowser")] |
| 149 | pub web_browser: bool, |
| 150 | pub client: String, |
| 151 | #[serde(rename = "clientVersion")] |
| 152 | pub client_version: String, |
| 153 | #[serde(rename = "clientType")] |
| 154 | pub client_type: String, |
| 155 | pub config: ConfigInfo, |
| 156 | } |
| 157 | |
| 158 | #[derive(Debug, Serialize, Deserialize)] |
| 159 | pub struct ConfigInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected