pokepurple/addons/twitcher/generated/twitch_get_channel_teams.gd

35 lines
939 B
GDScript3
Raw Normal View History

@tool
extends TwitchData
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
class_name TwitchGetChannelTeams
##
## #/components/schemas/GetChannelTeamsResponse
class Response extends TwitchData:
## The list of teams that the broadcaster is a member of. Returns an empty array if the broadcaster is not a member of a team.
@export var data: Array[TwitchChannelTeam]:
set(val):
data = val
track_data(&"data", val)
var response: BufferedHTTPClient.ResponseData
## Constructor with all required fields.
static func create(_data: Array[TwitchChannelTeam]) -> Response:
var response: Response = Response.new()
response.data = _data
return response
static func from_json(d: Dictionary) -> Response:
var result: Response = Response.new()
if d.get("data", null) != null:
for value in d["data"]:
result.data.append(TwitchChannelTeam.from_json(value))
return result