made-api 0.8.0

Published contract of the embedded MADE: versioned views, capabilities and errors
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

/// One seat at a ceremony, as a consumer sees it.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct CeremonyParticipant {
    pub role_id: String,
    pub specialty: String,
    pub bound_at_millis: i64,
}