Class: UntitledApi::InternalNacsResponse
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- UntitledApi::InternalNacsResponse
- Defined in:
- lib/untitled_api/models/internal_nacs_response.rb
Overview
Response data
Instance Attribute Summary collapse
-
#id ⇒ String
TODO: Write general description for this method.
-
#keypair ⇒ String
TODO: Write general description for this method.
-
#keypair_time ⇒ Float
TODO: Write general description for this method.
-
#mac ⇒ String
TODO: Write general description for this method.
-
#name ⇒ String
TODO: Write general description for this method.
-
#region ⇒ String
TODO: Write general description for this method.
-
#secret ⇒ String
TODO: Write general description for this method.
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.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(keypair_time = SKIP, keypair = SKIP, id = SKIP, name = SKIP, mac = SKIP, secret = SKIP, region = SKIP) ⇒ InternalNacsResponse
constructor
A new instance of InternalNacsResponse.
Methods inherited from BaseModel
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
#id ⇒ String
TODO: Write general description for this method
22 23 24 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 22 def id @id end |
#keypair ⇒ String
TODO: Write general description for this method
18 19 20 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 18 def keypair @keypair end |
#keypair_time ⇒ Float
TODO: Write general description for this method
14 15 16 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 14 def keypair_time @keypair_time end |
#mac ⇒ String
TODO: Write general description for this method
30 31 32 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 30 def mac @mac end |
#name ⇒ String
TODO: Write general description for this method
26 27 28 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 26 def name @name end |
#region ⇒ String
TODO: Write general description for this method
38 39 40 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 38 def region @region end |
#secret ⇒ String
TODO: Write general description for this method
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 |
.names ⇒ Object
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 |
.nullables ⇒ Object
An array for nullable fields
67 68 69 |
# File 'lib/untitled_api/models/internal_nacs_response.rb', line 67 def self.nullables [] end |
.optionals ⇒ Object
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 |