Represents an end user, which is part of a tenant. export EndUser

interface EndUser {
    id?: null | string;
    is_new?: boolean;
    tenant_id?: null | string;
}

Properties

id?: null | string
is_new?: boolean
tenant_id?: null | string