Class CheckSignInStatusSuccessResponse

Hierarchy (view full)

Implements

Constructors

Properties

discord?: {
    discriminator: string;
    id: string;
    username: string;
}

Signed in with Discord username and discriminator?

github?: {
    id: string;
    username: string;
}

Signed in with GitHub username?

google?: {
    id: string;
    username: string;
}

Signed in with Google username?

message: string

The message that was signed.

Approved scopes

signedIn: boolean

Indicates whether the user is signed in.

strava?: {
    id: string;
    username: string;
}

Signed in with Strava?

twitch?: {
    id: string;
    username: string;
}

Signed in with Twitch?

twitter?: {
    id: string;
    username: string;
}

Signed in with Twitter username?

Methods

  • Compares this object's fields to another object's fields for equality. Equality is determined by comparing the JSON representations of the objects.

    If normalizeNumberTypes is true, then all number types will be compared as strings (i.e. "1n" === "1" === 1). Else, they will be compared as their native types (i.e. 1n !== 1 !== "1").

    Type Parameters

    Parameters

    • other: undefined | null | CustomType<U>
    • OptionalnormalizeNumberTypes: boolean

    Returns boolean