Interface NexusSetRoleOperation

interface NexusSetRoleOperation {
    0: "setRole";
    1: {
        account: string;
        community: string;
        role:
            | "owner"
            | "muted"
            | "guest"
            | "member"
            | "mod"
            | "admin";
    };
}

Properties

0 1

Properties

0
1: {
    account: string;
    community: string;
    role:
        | "owner"
        | "muted"
        | "guest"
        | "member"
        | "mod"
        | "admin";
}