Update authentication.cr

This commit is contained in:
Ryan G 2023-06-13 14:32:18 -07:00
parent 9313ecfe22
commit a7b2aae296

View File

@ -250,19 +250,19 @@ struct CaptchaResponse
property username : String property username : String
property password : String property password : String
property answer : String property answer : String
property tokens : Array(CaptchaToken) property tokens : Array(JSON::Any)
end end
struct CaptchaToken # struct CaptchaToken
include JSON::Serializable # include JSON::Serializable
include YAML::Serializable # include YAML::Serializable
property session : String # property session : String
property expire : Int64 # property expire : Int64
property scopes : Array(String) # property scopes : Array(String)
property nonce : String # property nonce : String
property signature : String # property signature : String
end # end
struct Credentials struct Credentials
include JSON::Serializable include JSON::Serializable