Class: Raas::CreateAccountRequestModel

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/raas/models/create_account_request_model.rb

Overview

Represents the request to create an account

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, display_name = nil, contact_email = nil) ⇒ CreateAccountRequestModel

Returns a new instance of CreateAccountRequestModel.



28
29
30
31
32
33
34
# File 'lib/raas/models/create_account_request_model.rb', line 28

def initialize( = nil,
               display_name = nil,
               contact_email = nil)
  @account_identifier = 
  @display_name = display_name
  @contact_email = contact_email
end

Instance Attribute Details

#account_identifierString

The account identifier

Returns:



9
10
11
# File 'lib/raas/models/create_account_request_model.rb', line 9

def 
  @account_identifier
end

#contact_emailString

The contact email

Returns:



17
18
19
# File 'lib/raas/models/create_account_request_model.rb', line 17

def contact_email
  @contact_email
end

#display_nameString

The display name

Returns:



13
14
15
# File 'lib/raas/models/create_account_request_model.rb', line 13

def display_name
  @display_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/create_account_request_model.rb', line 37

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
   = hash['accountIdentifier']
  display_name = hash['displayName']
  contact_email = hash['contactEmail']

  # Create object from extracted values.
  CreateAccountRequestModel.new(,
                                display_name,
                                contact_email)
end

.namesObject

A mapping from model property names to API property names.



20
21
22
23
24
25
26
# File 'lib/raas/models/create_account_request_model.rb', line 20

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['account_identifier'] = 'accountIdentifier'
  @_hash['display_name'] = 'displayName'
  @_hash['contact_email'] = 'contactEmail'
  @_hash
end