Class: UntitledApi::InternalNacsResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/untitled_api/models/internal_nacs_response.rb

Overview

Response data

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(keypair_time = SKIP, keypair = SKIP, id = SKIP, name = SKIP, mac = SKIP, secret = SKIP, region = SKIP) ⇒ InternalNacsResponse

Returns a new instance of InternalNacsResponse.



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 71

def initialize(keypair_time = SKIP,
               keypair = SKIP,
               id = SKIP,
               name = SKIP,
               mac = SKIP,
               secret = SKIP,
               region = SKIP)
  @keypair_time = keypair_time unless keypair_time == SKIP
  @keypair = keypair unless keypair == SKIP
  @id = id unless id == SKIP
  @name = name unless name == SKIP
  @mac = mac unless mac == SKIP
  @secret = secret unless secret == SKIP
  @region = region unless region == SKIP
end

Instance Attribute Details

#idString

TODO: Write general description for this method

Returns:

  • (String)


22
23
24
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 22

def id
  @id
end

#keypairString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 18

def keypair
  @keypair
end

#keypair_timeFloat

TODO: Write general description for this method

Returns:

  • (Float)


14
15
16
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 14

def keypair_time
  @keypair_time
end

#macString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 30

def mac
  @mac
end

#nameString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 26

def name
  @name
end

#regionString

TODO: Write general description for this method

Returns:

  • (String)


38
39
40
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 38

def region
  @region
end

#secretString

TODO: Write general description for this method

Returns:

  • (String)


34
35
36
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 34

def secret
  @secret
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 88

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  keypair_time = hash.key?('keypair_time') ? hash['keypair_time'] : SKIP
  keypair = hash.key?('keypair') ? hash['keypair'] : SKIP
  id = hash.key?('id') ? hash['id'] : SKIP
  name = hash.key?('name') ? hash['name'] : SKIP
  mac = hash.key?('mac') ? hash['mac'] : SKIP
  secret = hash.key?('secret') ? hash['secret'] : SKIP
  region = hash.key?('region') ? hash['region'] : SKIP

  # Create object from extracted values.
  InternalNacsResponse.new(keypair_time,
                           keypair,
                           id,
                           name,
                           mac,
                           secret,
                           region)
end

.namesObject

A mapping from model property names to API property names.



41
42
43
44
45
46
47
48
49
50
51
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 41

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['keypair_time'] = 'keypair_time'
  @_hash['keypair'] = 'keypair'
  @_hash['id'] = 'id'
  @_hash['name'] = 'name'
  @_hash['mac'] = 'mac'
  @_hash['secret'] = 'secret'
  @_hash['region'] = 'region'
  @_hash
end

.nullablesObject

An array for nullable fields



67
68
69
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 67

def self.nullables
  []
end

.optionalsObject

An array for optional fields



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 54

def self.optionals
  %w[
    keypair_time
    keypair
    id
    name
    mac
    secret
    region
  ]
end