Interface APIGuildCategoryRolePermission

interface APIGuildCategoryRolePermission {
    categoryId: number;
    createdAt: Date;
    id: number;
    permissions: Record<string, boolean>;
    roleId: number;
    updatedAt?: Date;
}

Properties

categoryId: number

The ID of the channel

createdAt: Date

The ISO 8601 timestamp that the permission override was created at

id: number
permissions: Record<string, boolean>
roleId: number

The ID of the role

updatedAt?: Date

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