magnetar/ext_nodeinfo/src/version_2_1.rs

36 lines
1.5 KiB
Rust

use crate::version_1_0::{NodeInfo10Services, NodeInfo10Usage};
use serde::{Deserialize, Serialize};
use std::collections::{HashMap, HashSet};
#[derive(Clone, PartialEq, Debug, Deserialize, Serialize)]
pub struct NodeInfo21Software {
#[doc = "The url of the homepage of this server software."]
#[serde(skip_serializing_if = "Option::is_none")]
pub homepage: Option<String>,
#[doc = "The canonical name of this server software."]
pub name: String,
#[doc = "The url of the source code repository of this server software."]
#[serde(skip_serializing_if = "Option::is_none")]
pub repository: Option<String>,
#[doc = "The version of this server software."]
pub version: String,
}
#[derive(Clone, PartialEq, Debug, Deserialize, Serialize)]
pub struct NodeInfo21 {
#[doc = "Free form key value pairs for software specific values. Clients should not rely on any "]
#[doc = "specific key present."]
pub metadata: HashMap<String, serde_json::Value>,
#[doc = "Whether this server allows open self-registration."]
#[serde(rename = "openRegistrations")]
pub open_registrations: bool,
#[doc = "The protocols supported on this server."]
pub protocols: HashSet<String>,
#[doc = "The third party sites this server can connect to via their application API."]
pub services: NodeInfo10Services,
#[doc = "Metadata about server software in use."]
pub software: NodeInfo21Software,
#[doc = "Usage statistics for this server."]
pub usage: NodeInfo10Usage,
}