Class: LockstepSdk::InviteSubmitModel
- Inherits:
-
Object
- Object
- LockstepSdk::InviteSubmitModel
- Defined in:
- lib/lockstep_sdk/models/invite_submit_model.rb
Overview
Model to invite a new user to your accounting group
Instance Attribute Summary collapse
-
#email ⇒ Email
The email address of the user to invite.
Instance Method Summary collapse
-
#as_json(options = {}) ⇒ object
This object as a JSON key-value structure.
-
#initialize(params = {}) ⇒ InviteSubmitModel
constructor
Initialize the InviteSubmitModel using the provided prototype.
-
#to_json(*options) ⇒ String
This object converted to a JSON string.
Constructor Details
#initialize(params = {}) ⇒ InviteSubmitModel
Initialize the InviteSubmitModel using the provided prototype
25 26 27 |
# File 'lib/lockstep_sdk/models/invite_submit_model.rb', line 25 def initialize(params = {}) @email = params.dig(:email) end |
Instance Attribute Details
#email ⇒ Email
Returns The email address of the user to invite.
31 32 33 |
# File 'lib/lockstep_sdk/models/invite_submit_model.rb', line 31 def email @email end |
Instance Method Details
#as_json(options = {}) ⇒ object
Returns This object as a JSON key-value structure.
35 36 37 38 39 |
# File 'lib/lockstep_sdk/models/invite_submit_model.rb', line 35 def as_json(={}) { 'email' => @email, } end |
#to_json(*options) ⇒ String
Returns This object converted to a JSON string.
43 44 45 |
# File 'lib/lockstep_sdk/models/invite_submit_model.rb', line 43 def to_json(*) "[#{as_json(*).to_json(*)}]" end |