Interface JSONSocialLink

interface JSONSocialLink {
    createdAt: Date;
    handle: null | string;
    serviceID: null | string;
    type: "twitch" | "bnet" | "psn" | "xbox" | "steam" | "origin" | "youtube" | "twitter" | "facebook" | "switch" | "patreon" | "roblox" | "epic";
    userID: string;
}

Properties

createdAt: Date

The date the social link was created at

handle: null | string

The handle of the user within the external service

serviceID: null | string

The unique ID that represents this member's social link within the external service

type: "twitch" | "bnet" | "psn" | "xbox" | "steam" | "origin" | "youtube" | "twitter" | "facebook" | "switch" | "patreon" | "roblox" | "epic"

Social media name.

userID: string

ID of the user having this social linked to their profile.