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
33
addons/twitcher/generated/twitch_update_guest_star_slot.gd
Normal file
33
addons/twitcher/generated/twitch_update_guest_star_slot.gd
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
@tool
|
||||
extends TwitchData
|
||||
|
||||
# CLASS GOT AUTOGENERATED DON'T CHANGE MANUALLY. CHANGES CAN BE OVERWRITTEN EASILY.
|
||||
|
||||
class_name TwitchUpdateGuestStarSlot
|
||||
|
||||
|
||||
|
||||
## All optional parameters for TwitchAPI.update_guest_star_slot
|
||||
## #/components/schemas/UpdateGuestStarSlotOpt
|
||||
class Opt extends TwitchData:
|
||||
|
||||
## The slot to move this user assignment to. If the destination slot is occupied, the user assigned will be swapped into `source_slot_id`.
|
||||
@export var destination_slot_id: String:
|
||||
set(val):
|
||||
destination_slot_id = val
|
||||
track_data(&"destination_slot_id", val)
|
||||
|
||||
|
||||
|
||||
## Constructor with all required fields.
|
||||
static func create() -> Opt:
|
||||
var opt: Opt = Opt.new()
|
||||
return opt
|
||||
|
||||
|
||||
static func from_json(d: Dictionary) -> Opt:
|
||||
var result: Opt = Opt.new()
|
||||
if d.get("destination_slot_id", null) != null:
|
||||
result.destination_slot_id = d["destination_slot_id"]
|
||||
return result
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue