vta-sdk 0.11.2

SDK for Verifiable Trust Agents operating in Verifiable Trust Communities
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

use crate::keys::KeyRecord;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GetKeyBody {
    pub key_id: String,
}

pub type GetKeyResultBody = KeyRecord;