TwitchAccountInformation interface

Information about a user's twitch account - if linked to their Oooh account

Signature:

export interface TwitchAccountInformation 

Properties

PropertyModifiersTypeDescription
IsLinkedreadonlybooleanTrue if the user's twitch account is linked and there's valid data in the rest of the fields
ProfileImageUrlreadonlystringThe Url of the image used for the twitch profile
ProfileUrlreadonlystringA link to the user's twitch profile
UserLoginreadonlystringThe user's name used to uniquely identify them in twitch
UserNamereadonlystringThe 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;