@sumup/sdk
    Preparing search index...

    Type Alias MembershipUser

    Information about the user associated with the membership.

    type MembershipUser = {
        classic?: MembershipUserClassic;
        disabled_at?: string;
        email: string;
        id: string;
        mfa_on_login_enabled: boolean;
        nickname?: string;
        picture?: string;
        service_account_user: boolean;
        virtual_user: boolean;
    }
    Index

    Properties

    disabled_at?: string

    Time when the user has been disabled. Applies only to virtual users (virtual_user: true).

    email: string

    End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, for unique identification use ID instead.

    id: string

    Identifier for the End-User (also called Subject).

    mfa_on_login_enabled: boolean

    True if the user has enabled MFA on login.

    nickname?: string

    User's preferred name. Used for display purposes only.

    picture?: string

    URL of the End-User's profile picture. This URL refers to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image.

    service_account_user: boolean

    True if the user is a service account.

    virtual_user: boolean

    True if the user is a virtual user (operator).