@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Type Alias Collaborator

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

    type Collaborator = {
        accessLevel: 1 | 2 | 3;
        address: string;
        name?: string | null;
        role: string;
        status: "Active" | "Invited" | "Suspended" | "Inactive" | "Declined";
    }
    Index

    Properties

    accessLevel: 1 | 2 | 3

    The access level of the collaborator. 1: Owner 2: Member 3: Agent

    1
    
    address: string

    The public key of the collaborator

    '0x1234567890123456789012345678901234567890'
    
    name?: string | null

    The collaborator's display name. Optional: a collaborator invited without one has no name stored, and the API returns null for them.

    'Alice'
    
    role: string

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

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

    The current status of the collaborator

    'Invited'