Represents an SDK user

interface User {
    get channels(): Nullable<UserChannelsJS>;
    get customData(): any;
    get displayName(): Nullable<string>;
    get id(): string;
    get imageUrl(): Nullable<string>;
    get name(): string;
    get timestamp(): Nullable<UserTimestampJS>;
}

Accessors

  • get channels(): Nullable<UserChannelsJS>
  • The user channels

    Returns Nullable<UserChannelsJS>

  • get customData(): any
  • The user custom data

    Returns any

  • get displayName(): Nullable<string>
  • The user display name

    Returns Nullable<string>

  • get id(): string
  • The user id

    Returns string

  • get imageUrl(): Nullable<string>
  • The user image url

    Returns Nullable<string>

  • get name(): string
  • The user name

    Returns string

  • get timestamp(): Nullable<UserTimestampJS>
  • The user timestamp

    Returns Nullable<UserTimestampJS>