dialtone_common 0.1.0

Dialtone Common Code
Documentation
1
2
3
4
5
6
7
8
use crate::rest::actors::actor_model::OwnedActor;

/// Represents an actors with its credentials, which is the primary key for the actors.
pub struct CredentialedActor {
    pub private_key_pem: String,
    pub owned_actor: OwnedActor,
    pub creating_user_acct: String,
}