TwitchAccountInformation interface
Information about a user's twitch account - if linked to their Oooh account
Signature:
export interface TwitchAccountInformation
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
IsLinked | readonly | boolean | True if the user's twitch account is linked and there's valid data in the rest of the fields |
ProfileImageUrl | readonly | string | The Url of the image used for the twitch profile |
ProfileUrl | readonly | string | A link to the user's twitch profile |
UserLogin | readonly | string | The user's name used to uniquely identify them in twitch |
UserName | readonly | string | The name that's displayed publicly on their twitch account |
TwitchAccountInformation.IsLinked property
True if the user's twitch account is linked and there's valid data in the rest of the fields
Signature:
readonly IsLinked: boolean;
TwitchAccountInformation.ProfileImageUrl property
The Url of the image used for the twitch profile
Signature:
readonly ProfileImageUrl: string;
TwitchAccountInformation.ProfileUrl property
A link to the user's twitch profile
Signature:
readonly ProfileUrl: string;
TwitchAccountInformation.UserLogin property
The user's name used to uniquely identify them in twitch
Signature:
readonly UserLogin: string;
TwitchAccountInformation.UserName property
The name that's displayed publicly on their twitch account
Signature:
readonly UserName: string;
Updated 9 months ago