Class: Fizzy::Types::SessionAuthorization
- Inherits:
-
Data
- Object
- Data
- Fizzy::Types::SessionAuthorization
- Defined in:
- lib/fizzy/generated/types.rb
Instance Attribute Summary collapse
-
#requires_signup_completion ⇒ Object
readonly
Returns the value of attribute requires_signup_completion.
-
#session_token ⇒ Object
readonly
Returns the value of attribute session_token.
Class Method Summary collapse
Instance Attribute Details
#requires_signup_completion ⇒ Object (readonly)
Returns the value of attribute requires_signup_completion
846 847 848 |
# File 'lib/fizzy/generated/types.rb', line 846 def requires_signup_completion @requires_signup_completion end |
#session_token ⇒ Object (readonly)
Returns the value of attribute session_token
846 847 848 |
# File 'lib/fizzy/generated/types.rb', line 846 def session_token @session_token end |
Class Method Details
.from_json(data) ⇒ Object
848 849 850 851 852 853 |
# File 'lib/fizzy/generated/types.rb', line 848 def self.from_json(data) new( session_token: data["session_token"], requires_signup_completion: data["requires_signup_completion"] ) end |