A collection of users that have a specified topic that can be posted to

interface Group {
    bannerUrl: string;
    createdAt: Date;
    deleted: boolean;
    flagsCount: number;
    founderId: string;
    id: string;
    isMember: boolean;
    isNsfw: boolean;
    membersCount: number;
    moderationStatus: ModerationStatus;
    name: string;
    rules: string;
    updatedAt: Date;
}

Properties

bannerUrl: string

The URL of the Group's banner image

createdAt: Date

The creation date of the Group

Example

Observed: 2023-05-19T06:43:56.782Z
deleted: boolean

Probably if the Group is deleted TODO: Check this

flagsCount: number

The number of times the Group has been flagged for moderation

founderId: string

The User#id that created the Group

id: string

The unique id of the Group

isMember: boolean

If the current User is a member of the Group

isNsfw: boolean

The Group is not safe for work

membersCount: number

The number of members in the Group

moderationStatus: ModerationStatus

The current moderation status of the Group

name: string

The display name of the Group

rules: string

The rules of the Group

updatedAt: Date

The time of the last change to the Group

Example

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

Generated using TypeDoc