Interface JSONAppUser

interface JSONAppUser {
    app: boolean;
    appID: string;
    avatarURL: null | string;
    bannerURL: null | string;
    createdAt: Date;
    id: string;
    ownerID: string;
    type: null | UserTypes;
    username: string;
}

Hierarchy (view full)

Properties

app: boolean

If true, the user is an app.

appID: string

Client User App ID

avatarURL: null | string

Current avatar url of the user.

bannerURL: null | string

Current banned url of the user.

createdAt: Date

When the app client was created.

id: string
ownerID: string

ID of the app's owner.

type: null | UserTypes

User type

username: string

User's username.