Class: Raas::CustomerModel

Inherits:
BaseModel show all
Defined in:
lib/raas/models/customer_model.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

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

#accountsList of AccountSummaryModel

Accounts

Returns:



24
25
26
# File 'lib/raas/models/customer_model.rb', line 24

def accounts
  @accounts
end

#created_atDateTime

Date Created

Returns:

  • (DateTime)


20
21
22
# File 'lib/raas/models/customer_model.rb', line 20

def created_at
  @created_at
end

#customer_identifierString

Customer Identifier

Returns:



8
9
10
# File 'lib/raas/models/customer_model.rb', line 8

def customer_identifier
  @customer_identifier
end

#display_nameString

Display Name

Returns:



12
13
14
# File 'lib/raas/models/customer_model.rb', line 12

def display_name
  @display_name
end

#statusString

Status

Returns:



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

.namesObject

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