Class: Verizon::PWNDeviceId
- Defined in:
- lib/verizon/models/pwn_device_id.rb
Overview
PWNDeviceId Model.
Instance Attribute Summary collapse
-
#id ⇒ String
TODO: Write general description for this method.
-
#kind ⇒ 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(id = nil, kind = nil) ⇒ PWNDeviceId
constructor
A new instance of PWNDeviceId.
Methods inherited from BaseModel
Constructor Details
#initialize(id = nil, kind = nil) ⇒ PWNDeviceId
Returns a new instance of PWNDeviceId.
38 39 40 41 |
# File 'lib/verizon/models/pwn_device_id.rb', line 38 def initialize(id = nil, kind = nil) @id = id @kind = kind end |
Instance Attribute Details
#id ⇒ String
TODO: Write general description for this method
14 15 16 |
# File 'lib/verizon/models/pwn_device_id.rb', line 14 def id @id end |
#kind ⇒ String
TODO: Write general description for this method
18 19 20 |
# File 'lib/verizon/models/pwn_device_id.rb', line 18 def kind @kind end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/verizon/models/pwn_device_id.rb', line 44 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. id = hash.key?('id') ? hash['id'] : nil kind = hash.key?('kind') ? hash['kind'] : nil # Create object from extracted values. PWNDeviceId.new(id, kind) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/verizon/models/pwn_device_id.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['id'] = 'id' @_hash['kind'] = 'kind' @_hash end |
.nullables ⇒ Object
An array for nullable fields
34 35 36 |
# File 'lib/verizon/models/pwn_device_id.rb', line 34 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 |
# File 'lib/verizon/models/pwn_device_id.rb', line 29 def self.optionals [] end |