Initial Commit
Initial commit of Code Base.
This commit is contained in:
parent
293b1213e1
commit
c11a4ebbc2
653 changed files with 36893 additions and 1 deletions
36
addons/twitcher/generated/twitch_cheermote_image_theme.gd
Normal file
36
addons/twitcher/generated/twitch_cheermote_image_theme.gd
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
@tool
|
||||
extends TwitchData
|
||||
|
||||
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
|
||||
|
||||
##
|
||||
## #/components/schemas/CheermoteImageTheme
|
||||
class_name TwitchCheermoteImageTheme
|
||||
|
||||
##
|
||||
@export var animated_format: TwitchCheermoteImageFormat:
|
||||
set(val):
|
||||
animated_format = val
|
||||
track_data(&"animated_format", val)
|
||||
|
||||
##
|
||||
@export var static_format: TwitchCheermoteImageFormat:
|
||||
set(val):
|
||||
static_format = val
|
||||
track_data(&"static_format", val)
|
||||
var response: BufferedHTTPClient.ResponseData
|
||||
|
||||
|
||||
## Constructor with all required fields.
|
||||
static func create() -> TwitchCheermoteImageTheme:
|
||||
var twitch_cheermote_image_theme: TwitchCheermoteImageTheme = TwitchCheermoteImageTheme.new()
|
||||
return twitch_cheermote_image_theme
|
||||
|
||||
|
||||
static func from_json(d: Dictionary) -> TwitchCheermoteImageTheme:
|
||||
var result: TwitchCheermoteImageTheme = TwitchCheermoteImageTheme.new()
|
||||
if d.get("animated_format", null) != null:
|
||||
result.animated_format = TwitchCheermoteImageFormat.from_json(d["animated_format"])
|
||||
if d.get("static_format", null) != null:
|
||||
result.static_format = TwitchCheermoteImageFormat.from_json(d["static_format"])
|
||||
return result
|
||||
Loading…
Add table
Add a link
Reference in a new issue