pub type Call = Call;

Aliased Type§

enum Call {
    invite_smith {
        receiver: u32,
    },
    accept_invitation,
    certify_smith {
        receiver: u32,
    },
}

Variants§

§

invite_smith

Fields

§receiver: u32
§

accept_invitation

§

certify_smith

Fields

§receiver: u32