Type alias GroupPayload

GroupPayload: {
    archivedAt?: string;
    archivedBy?: string;
    avatar?: string;
    createdAt: string;
    createdBy: string;
    description?: string;
    emoteId?: number;
    id: string;
    isHome?: boolean;
    isPublic?: boolean;
    name: string;
    serverId: string;
    updatedAt?: string;
    updatedBy?: string;
}

Type declaration

  • Optional archivedAt?: string

    The ISO 8601 timestamp that the group was archived at, if relevant

  • Optional archivedBy?: string

    The ID of the user who archived this group

  • Optional avatar?: string

    The avatar image associated with the group

  • createdAt: string

    The ISO 8601 timestamp that the group was created at

  • createdBy: string

    The ID of the user who created this group

  • Optional description?: string

    The description associated with the group

  • Optional emoteId?: number

    The emote to associate with the group

  • id: string

    The ID of the group

  • Optional isHome?: boolean

    If true, this is the server's home group

  • Optional isPublic?: boolean

    Is this group open for anyone to join?

  • name: string

    The name of the group

  • serverId: string

    The ID of the server

  • Optional updatedAt?: string

    The ISO 8601 timestamp that the group was updated at, if relevant

  • Optional updatedBy?: string

    The ID of the user who updated this group

Generated using TypeDoc