private_event_sourcing

Type Alias SignedEvent

Source
pub type SignedEvent<T> = SignedEntry<PrivateEventContent<T>>;

Aliased Type§

struct SignedEvent<T> {
    pub author: HoloHash<Agent>,
    pub signature: Signature,
    pub payload: SignedContent<PrivateEventContent<T>>,
}

Fields§

§author: HoloHash<Agent>§signature: Signature§payload: SignedContent<PrivateEventContent<T>>