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 password : String
property answer : String
property tokens : Array(CaptchaToken)
property tokens : Array(JSON::Any)
end
struct CaptchaToken
include JSON::Serializable
include YAML::Serializable
# struct CaptchaToken
# include JSON::Serializable
# include YAML::Serializable
property session : String
property expire : Int64
property scopes : Array(String)
property nonce : String
property signature : String
end
# property session : String
# property expire : Int64
# property scopes : Array(String)
# property nonce : String
# property signature : String
# end
struct Credentials
include JSON::Serializable