salt-sdk
    Preparing search index...

    Type Alias Member

    An individual member within the Organisation. This represents a human signer or API user - robos are handled separately.

    type Member = {
        accessLevel: 1 | 2 | 3 | 4;
        address: string;
        name: string;
        role: string;
        status: "Active" | "Invited" | "Suspended" | "Inactive";
    }
    Index

    Properties

    accessLevel: 1 | 2 | 3 | 4

    The access level of the member. 1: Owner 2: Member 3: Agent 4: Member with no permissions

    1
    
    address: string

    The public key of the member

    '0x1234567890123456789012345678901234567890'
    
    name: string
    role: string

    The text description of the member's role, set by the user that invited this member.

    'DeFI Team Lead'
    
    status: "Active" | "Invited" | "Suspended" | "Inactive"

    The current status of the member

    'Invited'