keybase-protocol 0.1.1

Provides the Keybase types defined in the Keybase AVDL Protocol files for Rust.
Documentation
// Namespace: "keybase.1"
// Protocol: "account"
#![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::passphrase_common::*;
use crate::protocol::gregor1;










pub struct HasServerKeysRes {
  pub hasServerKeys: bool,
}



pub struct LockdownHistory {
  pub status: bool,
  pub creationTime: Time,
  pub deviceID: DeviceID,
  pub deviceName: Option<String>,
}

pub struct GetLockdownResponse {
  pub history: Option<Vec<LockdownHistory>>,
  pub status: bool,
}