35 lines
No EOL
1 KiB
GDScript
35 lines
No EOL
1 KiB
GDScript
@tool
|
|
extends TwitchData
|
|
|
|
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
|
|
|
|
class_name TwitchGetCharityCampaign
|
|
|
|
|
|
|
|
##
|
|
## #/components/schemas/GetCharityCampaignResponse
|
|
class Response extends TwitchData:
|
|
|
|
## A list that contains the charity campaign that the broadcaster is currently running. The list is empty if the broadcaster is not running a charity campaign; the campaign information is not available after the campaign ends.
|
|
@export var data: Array[TwitchCharityCampaign]:
|
|
set(val):
|
|
data = val
|
|
track_data(&"data", val)
|
|
var response: BufferedHTTPClient.ResponseData
|
|
|
|
|
|
## Constructor with all required fields.
|
|
static func create(_data: Array[TwitchCharityCampaign]) -> 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(TwitchCharityCampaign.from_json(value))
|
|
return result
|
|
|