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
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
// Namespace: "keybase.1"
// Protocol: "identifyUi"
#![allow(dead_code)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(unused_imports)]
use serde::{Serialize, Deserialize};
use serde_repr::{Deserialize_repr, Serialize_repr};use super::*;

use super::common::*;
use super::identify_common::*;
#[derive(Serialize, Deserialize, Debug)]
pub struct ProofResult {
  pub state: Option<ProofState>,
  pub status: Option<ProofStatus>,
  #[serde(default)]
  pub desc: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct IdentifyRow {
  // @lint("ignore")
  pub rowId: Option<i32>,
  pub proof: Option<RemoteProof>,
  pub trackDiff: Option<TrackDiff>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct IdentifyKey {
  #[serde(default)]
  pub pgpFingerprint: Option<String>,
  // @lint("ignore")
  pub KID: Option<KID>,
  pub trackDiff: Option<TrackDiff>,
  #[serde(default)]
  pub breaksTracking: Option<bool>,
  pub sigID: Option<SigID>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct Cryptocurrency {
  // @lint("ignore")
  pub rowId: Option<i32>,
  #[serde(default)]
  pub pkhash: Option<String>,
  #[serde(default)]
  pub address: Option<String>,
  pub sigID: Option<SigID>,
  #[serde(rename = "type")]
  #[serde(default)]
  pub ty: Option<String>,
  #[serde(default)]
  pub family: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct StellarAccount {
  #[serde(default)]
  pub accountID: Option<String>,
  #[serde(default)]
  pub federationAddress: Option<String>,
  pub sigID: Option<SigID>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct RevokedProof {
  pub proof: Option<RemoteProof>,
  pub diff: Option<TrackDiff>,
  #[serde(default)]
  pub snoozed: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct Identity {
  pub status: Option<Status>,
  pub whenLastTracked: Option<Time>,
  #[serde(default)]
  pub proofs: Option<Vec<IdentifyRow>>,
  #[serde(default)]
  pub cryptocurrency: Option<Vec<Cryptocurrency>>,
  #[serde(default)]
  pub revoked: Option<Vec<TrackDiff>>,
  #[serde(default)]
  pub revokedDetails: Option<Vec<RevokedProof>>,
  #[serde(default)]
  pub breaksTracking: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SigHint {
  // @lint("ignore")
  #[serde(default)]
  pub remoteId: Option<String>,
  #[serde(default)]
  pub humanUrl: Option<String>,
  #[serde(default)]
  pub apiUrl: Option<String>,
  #[serde(default)]
  pub checkText: Option<String>,
}

#[derive(Serialize_repr, Deserialize_repr, Debug, Hash, PartialEq, Eq)]
#[repr(u8)]
pub enum CheckResultFreshness {
  Fresh_0,
  Aged_1,
  Rancid_2,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct CheckResult {
  pub proofResult: Option<ProofResult>,
  pub time: Option<Time>,
  pub freshness: Option<CheckResultFreshness>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct LinkCheckResult {
  // @lint("ignore")
  pub proofId: Option<i32>,
  pub proofResult: Option<ProofResult>,
  pub snoozedResult: Option<ProofResult>,
  #[serde(default)]
  pub torWarning: Option<bool>,
  pub tmpTrackExpireTime: Option<Time>,
  pub cached: Option<CheckResult>,
  pub diff: Option<TrackDiff>,
  pub remoteDiff: Option<TrackDiff>,
  pub hint: Option<SigHint>,
  #[serde(default)]
  pub breaksTracking: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct UserTeamShowcase {
  #[serde(rename = "fq_name")]
  #[serde(default)]
  pub fqName: Option<String>,
  #[serde(rename = "open")]
  #[serde(default)]
  pub open: Option<bool>,
  #[serde(rename = "team_is_showcased")]
  #[serde(default)]
  pub teamIsShowcased: Option<bool>,
  #[serde(rename = "description")]
  #[serde(default)]
  pub description: Option<String>,
  #[serde(rename = "role")]
  pub role: Option<TeamRole>,
  #[serde(rename = "public_admins")]
  #[serde(default)]
  pub publicAdmins: Option<Vec<String>>,
  #[serde(rename = "num_members")]
  pub numMembers: Option<i32>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct UserCard {
  pub following: Option<i32>,
  pub followers: Option<i32>,
  pub uid: Option<UID>,
  #[serde(default)]
  pub fullName: Option<String>,
  #[serde(default)]
  pub location: Option<String>,
  #[serde(default)]
  pub bio: Option<String>,
  #[serde(default)]
  pub website: Option<String>,
  #[serde(default)]
  pub twitter: Option<String>,
  #[serde(default)]
  pub youFollowThem: Option<bool>,
  #[serde(default)]
  pub theyFollowYou: Option<bool>,
  #[serde(default)]
  pub teamShowcase: Option<Vec<UserTeamShowcase>>,
  #[serde(default)]
  pub registeredForAirdrop: Option<bool>,
  #[serde(default)]
  pub blocked: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct ConfirmResult {
  #[serde(default)]
  pub identityConfirmed: Option<bool>,
  #[serde(default)]
  pub remoteConfirmed: Option<bool>,
  #[serde(default)]
  pub expiringLocal: Option<bool>,
  #[serde(default)]
  pub autoConfirmed: Option<bool>,
}

#[derive(Serialize_repr, Deserialize_repr, Debug, Hash, PartialEq, Eq)]
#[repr(u8)]
pub enum DismissReasonType {
  None_0,
  Handled_elsewhere_1,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct DismissReason {
  #[serde(rename = "type")]
  pub ty: Option<DismissReasonType>,
  #[serde(default)]
  pub reason: Option<String>,
  #[serde(default)]
  pub resource: Option<String>,
}