Class: Raas::CustomerModel
- Defined in:
- lib/raas/models/customer_model.rb
Instance Attribute Summary collapse
-
#accounts ⇒ List of AccountSummaryModel
Accounts.
-
#created_at ⇒ DateTime
Date Created.
-
#customer_identifier ⇒ String
Customer Identifier.
-
#display_name ⇒ String
Display Name.
-
#status ⇒ String
Status.
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(customer_identifier = nil, display_name = nil, status = nil, created_at = nil, accounts = nil) ⇒ CustomerModel
constructor
A new instance of CustomerModel.
Methods inherited from BaseModel
Constructor Details
#initialize(customer_identifier = nil, display_name = nil, status = nil, created_at = nil, accounts = nil) ⇒ CustomerModel
Returns a new instance of CustomerModel.
39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/raas/models/customer_model.rb', line 39 def initialize(customer_identifier = nil, display_name = nil, status = nil, created_at = nil, accounts = nil) @customer_identifier = customer_identifier @display_name = display_name @status = status @created_at = created_at @accounts = accounts end |
Instance Attribute Details
#accounts ⇒ List of AccountSummaryModel
Accounts
24 25 26 |
# File 'lib/raas/models/customer_model.rb', line 24 def accounts @accounts end |
#created_at ⇒ DateTime
Date Created
20 21 22 |
# File 'lib/raas/models/customer_model.rb', line 20 def created_at @created_at end |
#customer_identifier ⇒ String
Customer Identifier
8 9 10 |
# File 'lib/raas/models/customer_model.rb', line 8 def customer_identifier @customer_identifier end |
#display_name ⇒ String
Display Name
12 13 14 |
# File 'lib/raas/models/customer_model.rb', line 12 def display_name @display_name end |
#status ⇒ String
Status
16 17 18 |
# File 'lib/raas/models/customer_model.rb', line 16 def status @status end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/raas/models/customer_model.rb', line 52 def self.from_hash(hash) return nil unless hash # Extract variables from the hash customer_identifier = hash['customerIdentifier'] display_name = hash['displayName'] status = hash['status'] created_at = DateTime.rfc3339(hash['createdAt']) if hash['createdAt'] # Parameter is an array, so we need to iterate through it accounts = nil if hash['accounts'] != nil accounts = Array.new hash['accounts'].each{|structure| accounts << (AccountSummaryModel.from_hash(structure) if structure)} end # Create object from extracted values CustomerModel.new(customer_identifier, display_name, status, created_at, accounts) end |
.names ⇒ Object
A mapping from model property names to API property names
27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/raas/models/customer_model.rb', line 27 def self.names if @_hash.nil? @_hash = {} @_hash["customer_identifier"] = "customerIdentifier" @_hash["display_name"] = "displayName" @_hash["status"] = "status" @_hash["created_at"] = "createdAt" @_hash["accounts"] = "accounts" end @_hash end |