Interface JSONCategory

interface JSONCategory {
    createdAt: Date;
    groupID: string;
    guildID: string;
    id: number;
    name: string;
    updatedAt: null | Date;
}

Hierarchy (view full)

Properties

createdAt: Date

Date of the creation of the category.

groupID: string

The ID of the group

guildID: string

The ID of the server

id: number
name: string

Name of the category (min length 1; max length 100)

updatedAt: null | Date

The date of the last edition of the category.