pokepurple/addons/twitcher/generated/twitch_channel.gd
Mario Steele c11a4ebbc2 Initial Commit
Initial commit of Code Base.
2025-06-12 14:31:14 -05:00

132 lines
4.7 KiB
GDScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@tool
extends TwitchData
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
##
## #/components/schemas/Channel
class_name TwitchChannel
## The ISO 639-1 two-letter language code of the language used by the broadcaster. For example, _en_ for English. If the broadcaster uses a language not in the list of [supported stream languages](https://help.twitch.tv/s/article/languages-on-twitch#streamlang), the value is _other_.
@export var broadcaster_language: String:
set(val):
broadcaster_language = val
track_data(&"broadcaster_language", val)
## The broadcasters login name.
@export var broadcaster_login: String:
set(val):
broadcaster_login = val
track_data(&"broadcaster_login", val)
## The broadcasters display name.
@export var display_name: String:
set(val):
display_name = val
track_data(&"display_name", val)
## The ID of the game that the broadcaster is playing or last played.
@export var game_id: String:
set(val):
game_id = val
track_data(&"game_id", val)
## The name of the game that the broadcaster is playing or last played.
@export var game_name: String:
set(val):
game_name = val
track_data(&"game_name", val)
## An ID that uniquely identifies the channel (this is the broadcasters ID).
@export var id: String:
set(val):
id = val
track_data(&"id", val)
## A Boolean value that determines whether the broadcaster is streaming live. Is **true** if the broadcaster is streaming live; otherwise, **false**.
@export var is_live: bool:
set(val):
is_live = val
track_data(&"is_live", val)
## **IMPORTANT** As of February 28, 2023, this field is deprecated and returns only an empty array. If you use this field, please update your code to use the `tags` field.
##
## The list of tags that apply to the stream. The list contains IDs only when the channel is steaming live. For a list of possible tags, see [List of All Tags](https://www.twitch.tv/directory/all/tags). The list doesnt include Category Tags.
@export var tag_ids: Array[String]:
set(val):
tag_ids = val
track_data(&"tag_ids", val)
## The tags applied to the channel.
@export var tags: Array[String]:
set(val):
tags = val
track_data(&"tags", val)
## A URL to a thumbnail of the broadcasters profile image.
@export var thumbnail_url: String:
set(val):
thumbnail_url = val
track_data(&"thumbnail_url", val)
## The streams title. Is an empty string if the broadcaster didnt set it.
@export var title: String:
set(val):
title = val
track_data(&"title", val)
## The UTC date and time (in RFC3339 format) of when the broadcaster started streaming. The string is empty if the broadcaster is not streaming live.
@export var started_at: String:
set(val):
started_at = val
track_data(&"started_at", val)
var response: BufferedHTTPClient.ResponseData
## Constructor with all required fields.
static func create(_broadcaster_language: String, _broadcaster_login: String, _display_name: String, _game_id: String, _game_name: String, _id: String, _is_live: bool, _tag_ids: Array[String], _tags: Array[String], _thumbnail_url: String, _title: String, _started_at: String) -> TwitchChannel:
var twitch_channel: TwitchChannel = TwitchChannel.new()
twitch_channel.broadcaster_language = _broadcaster_language
twitch_channel.broadcaster_login = _broadcaster_login
twitch_channel.display_name = _display_name
twitch_channel.game_id = _game_id
twitch_channel.game_name = _game_name
twitch_channel.id = _id
twitch_channel.is_live = _is_live
twitch_channel.tag_ids = _tag_ids
twitch_channel.tags = _tags
twitch_channel.thumbnail_url = _thumbnail_url
twitch_channel.title = _title
twitch_channel.started_at = _started_at
return twitch_channel
static func from_json(d: Dictionary) -> TwitchChannel:
var result: TwitchChannel = TwitchChannel.new()
if d.get("broadcaster_language", null) != null:
result.broadcaster_language = d["broadcaster_language"]
if d.get("broadcaster_login", null) != null:
result.broadcaster_login = d["broadcaster_login"]
if d.get("display_name", null) != null:
result.display_name = d["display_name"]
if d.get("game_id", null) != null:
result.game_id = d["game_id"]
if d.get("game_name", null) != null:
result.game_name = d["game_name"]
if d.get("id", null) != null:
result.id = d["id"]
if d.get("is_live", null) != null:
result.is_live = d["is_live"]
if d.get("tag_ids", null) != null:
for value in d["tag_ids"]:
result.tag_ids.append(value)
if d.get("tags", null) != null:
for value in d["tags"]:
result.tags.append(value)
if d.get("thumbnail_url", null) != null:
result.thumbnail_url = d["thumbnail_url"]
if d.get("title", null) != null:
result.title = d["title"]
if d.get("started_at", null) != null:
result.started_at = d["started_at"]
return result