Class: Raas::NameEmailModel
- Defined in:
- lib/raas/models/name_email_model.rb
Instance Attribute Summary collapse
-
#email ⇒ String
Email Address.
-
#first_name ⇒ String
First Name.
-
#last_name ⇒ String
Last Name.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
Instance Method Summary collapse
-
#initialize(email = nil, first_name = nil, last_name = nil) ⇒ NameEmailModel
constructor
A new instance of NameEmailModel.
Methods inherited from BaseModel
Constructor Details
#initialize(email = nil, first_name = nil, last_name = nil) ⇒ NameEmailModel
Returns a new instance of NameEmailModel.
28 29 30 31 32 33 34 |
# File 'lib/raas/models/name_email_model.rb', line 28 def initialize(email = nil, first_name = nil, last_name = nil) @email = email @first_name = first_name @last_name = last_name end |
Instance Attribute Details
#email ⇒ String
Email Address
7 8 9 |
# File 'lib/raas/models/name_email_model.rb', line 7 def email @email end |
#first_name ⇒ String
First Name
11 12 13 |
# File 'lib/raas/models/name_email_model.rb', line 11 def first_name @first_name end |
#last_name ⇒ String
Last Name
15 16 17 |
# File 'lib/raas/models/name_email_model.rb', line 15 def last_name @last_name end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash
37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/raas/models/name_email_model.rb', line 37 def self.from_hash(hash) return nil unless hash # Extract variables from the hash email = hash['email'] first_name = hash['firstName'] last_name = hash['lastName'] # Create object from extracted values NameEmailModel.new(email, first_name, last_name) end |
.names ⇒ Object
A mapping from model property names to API property names
18 19 20 21 22 23 24 25 26 |
# File 'lib/raas/models/name_email_model.rb', line 18 def self.names if @_hash.nil? @_hash = {} @_hash["email"] = "email" @_hash["first_name"] = "firstName" @_hash["last_name"] = "lastName" end @_hash end |