interface UmbMemberCollectionModel {
    email: string;
    entityType: "member";
    failedPasswordAttempts: number;
    groups: string[];
    isApproved: boolean;
    isLockedOut: boolean;
    isTwoFactorEnabled: boolean;
    kind: UmbMemberKindType;
    lastLockoutDate: null | string;
    lastLoginDate: null | string;
    lastPasswordChangeDate: null | string;
    memberType: { icon: string; unique: string };
    newPassword?: string;
    oldPassword?: string;
    unique: string;
    username: string;
    values: UmbMemberValueModel<unknown>[];
    variants: UmbEntityVariantModel[];
}

Hierarchy (View Summary, Expand)

Properties

email: string
entityType: "member"
failedPasswordAttempts: number
groups: string[]
isApproved: boolean
isLockedOut: boolean
isTwoFactorEnabled: boolean
kind: UmbMemberKindType
lastLockoutDate: null | string
lastLoginDate: null | string
lastPasswordChangeDate: null | string
memberType: { icon: string; unique: string }
newPassword?: string
oldPassword?: string
unique: string
username: string
values: UmbMemberValueModel<unknown>[]
MMNEPVFCICPMFPCPTTAAATR