35 lines
No EOL
895 B
GDScript
35 lines
No EOL
895 B
GDScript
@tool
|
||
extends TwitchData
|
||
|
||
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
|
||
|
||
class_name TwitchGetCreatorGoals
|
||
|
||
|
||
|
||
##
|
||
## #/components/schemas/GetCreatorGoalsResponse
|
||
class Response extends TwitchData:
|
||
|
||
## The list of goals. The list is empty if the broadcaster hasn’t created goals.
|
||
@export var data: Array[TwitchCreatorGoal]:
|
||
set(val):
|
||
data = val
|
||
track_data(&"data", val)
|
||
var response: BufferedHTTPClient.ResponseData
|
||
|
||
|
||
## Constructor with all required fields.
|
||
static func create(_data: Array[TwitchCreatorGoal]) -> 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(TwitchCreatorGoal.from_json(value))
|
||
return result
|
||
|