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
16
addons/twitcher/lib/oOuch/oauth_device_code_response.gd
Normal file
16
addons/twitcher/lib/oOuch/oauth_device_code_response.gd
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
extends RefCounted
|
||||
|
||||
## Response of the inital device code request
|
||||
|
||||
var device_code: String;
|
||||
var expires_in: int;
|
||||
var interval: int;
|
||||
var user_code: String;
|
||||
var verification_uri: String;
|
||||
|
||||
func _init(json: Dictionary):
|
||||
device_code = json["device_code"];
|
||||
expires_in = int(json["expires_in"]);
|
||||
interval = int(json["interval"]);
|
||||
user_code = json["user_code"];
|
||||
verification_uri = json["verification_uri"];
|
||||
Loading…
Add table
Add a link
Reference in a new issue