Class: Contrib::Auth::Provider::Responses::SignUpWithEmailAndPassword
- Inherits:
-
Object
- Object
- Contrib::Auth::Provider::Responses::SignUpWithEmailAndPassword
- Defined in:
- lib/contrib/auth/provider/responses/sign_up_with_email_and_password.rb
Instance Attribute Summary collapse
-
#expires_in ⇒ Object
Returns the value of attribute expires_in.
-
#id_token ⇒ Object
Returns the value of attribute id_token.
-
#refresh_token ⇒ Object
Returns the value of attribute refresh_token.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ SignUpWithEmailAndPassword
constructor
A new instance of SignUpWithEmailAndPassword.
Constructor Details
#initialize(params = {}) ⇒ SignUpWithEmailAndPassword
Returns a new instance of SignUpWithEmailAndPassword.
10 11 12 13 14 |
# File 'lib/contrib/auth/provider/responses/sign_up_with_email_and_password.rb', line 10 def initialize(params = {}) params.each do |param, key| public_send("#{param}=", key) end end |
Instance Attribute Details
#expires_in ⇒ Object
Returns the value of attribute expires_in.
8 9 10 |
# File 'lib/contrib/auth/provider/responses/sign_up_with_email_and_password.rb', line 8 def expires_in @expires_in end |
#id_token ⇒ Object
Returns the value of attribute id_token.
6 7 8 |
# File 'lib/contrib/auth/provider/responses/sign_up_with_email_and_password.rb', line 6 def id_token @id_token end |
#refresh_token ⇒ Object
Returns the value of attribute refresh_token.
7 8 9 |
# File 'lib/contrib/auth/provider/responses/sign_up_with_email_and_password.rb', line 7 def refresh_token @refresh_token end |