Interface MemberInterface

interface MemberInterface {
    createdAt: string;
    disabled: boolean;
    entityType: string;
    groupIds: string[];
    id: string;
    profile: MemberProfile;
    role: string;
    state: MemberState;
    updatedAt: string;
}

Hierarchy

  • default
    • MemberInterface

Implemented by

Properties

createdAt: string
disabled: boolean
entityType: string
groupIds: string[]
id: string
profile: MemberProfile
role: string
state: MemberState
updatedAt: string