Class: Raas::AccountSummaryModel

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

Overview

Represents an Account Summary

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(account_identifier = nil, account_number = nil, display_name = nil, created_at = nil, status = nil) ⇒ AccountSummaryModel

Returns a new instance of AccountSummaryModel.



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/raas/models/account_summary_model.rb', line 39

def initialize( = nil,
                = nil,
               display_name = nil,
               created_at = nil,
               status = nil)
  @account_identifier = 
  @account_number = 
  @display_name = display_name
  @created_at = created_at
  @status = status
end

Instance Attribute Details

#account_identifierString

The account identifier

Returns:



10
11
12
# File 'lib/raas/models/account_summary_model.rb', line 10

def 
  @account_identifier
end

#account_numberString

The account number

Returns:



14
15
16
# File 'lib/raas/models/account_summary_model.rb', line 14

def 
  @account_number
end

#created_atDateTime

The date the account was created

Returns:

  • (DateTime)


22
23
24
# File 'lib/raas/models/account_summary_model.rb', line 22

def created_at
  @created_at
end

#display_nameString

The display name

Returns:



18
19
20
# File 'lib/raas/models/account_summary_model.rb', line 18

def display_name
  @display_name
end

#statusString

The status of the account

Returns:



26
27
28
# File 'lib/raas/models/account_summary_model.rb', line 26

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
# File 'lib/raas/models/account_summary_model.rb', line 52

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
   = hash['accountIdentifier']
   = hash['accountNumber']
  display_name = hash['displayName']
  created_at = APIHelper.rfc3339(hash['createdAt']) if hash['createdAt']
  status = hash['status']

  # Create object from extracted values.
  AccountSummaryModel.new(,
                          ,
                          display_name,
                          created_at,
                          status)
end

.namesObject

A mapping from model property names to API property names.



29
30
31
32
33
34
35
36
37
# File 'lib/raas/models/account_summary_model.rb', line 29

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['account_identifier'] = 'accountIdentifier'
  @_hash['account_number'] = 'accountNumber'
  @_hash['display_name'] = 'displayName'
  @_hash['created_at'] = 'createdAt'
  @_hash['status'] = 'status'
  @_hash
end