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

    Type Alias CreateOrganisationCollaborator

    A collaborator to invite when creating an organisation. They will receive an invitation that can be accepted via Salt#acceptOrganisationInvitation.

    type CreateOrganisationCollaborator = {
        accessLevel?: CollaboratorAccessLevel | AccessRole;
        address: string;
        name?: string;
        role: string;
    }
    Index

    Properties

    Access level to grant, as a number or its named AccessRole. Defaults to 2 (Member).

    • 1 / 'owner'
    • 2 / 'member'
    • 3 / 'agent'
    address: string

    Ethereum address of the collaborator

    '0x1234567890123456789012345678901234567890'
    
    name?: string

    Display name of the collaborator

    role: string

    The collaborator's role within the organisation

    'CFO'