An individual User in a Group

interface Member {
    createdAt: Date;
    groupId: string;
    id: string;
    moderator: boolean;
    moderatorStatus: null;
    mute: boolean;
    updatedAt: Date;
    userId: string;
}

Properties

createdAt: Date

The creation date of the Member

Example

Observed: 2023-05-19T06:43:56.782Z
groupId: string
id: string

The unique id of the Member

moderator: boolean

Is the current User a moderator?

moderatorStatus: null

The moderation status of the member

mute: boolean

Is the current User muted?

updatedAt: Date

The time of the last change to the Member

Example

Observed: 2023-05-19T06:43:56.782Z
userId: string

The User#id that is in the group

Generated using TypeDoc