Class: Verizon::V3LicenseDevice

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/verizon/models/v3_license_device.rb

Overview

Device IMEI.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(device_id = nil, assignment_time = SKIP) ⇒ V3LicenseDevice

Returns a new instance of V3LicenseDevice.



40
41
42
43
# File 'lib/verizon/models/v3_license_device.rb', line 40

def initialize(device_id = nil, assignment_time = SKIP)
  @device_id = device_id
  @assignment_time = assignment_time unless assignment_time == SKIP
end

Instance Attribute Details

#assignment_timeString

License assignment time.

Returns:

  • (String)


18
19
20
# File 'lib/verizon/models/v3_license_device.rb', line 18

def assignment_time
  @assignment_time
end

#device_idString

Device IMEI.

Returns:

  • (String)


14
15
16
# File 'lib/verizon/models/v3_license_device.rb', line 14

def device_id
  @device_id
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/verizon/models/v3_license_device.rb', line 46

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  device_id = hash.key?('deviceId') ? hash['deviceId'] : nil
  assignment_time =
    hash.key?('assignmentTime') ? hash['assignmentTime'] : SKIP

  # Create object from extracted values.
  V3LicenseDevice.new(device_id,
                      assignment_time)
end

.namesObject

A mapping from model property names to API property names.



21
22
23
24
25
26
# File 'lib/verizon/models/v3_license_device.rb', line 21

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['device_id'] = 'deviceId'
  @_hash['assignment_time'] = 'assignmentTime'
  @_hash
end

.nullablesObject

An array for nullable fields



36
37
38
# File 'lib/verizon/models/v3_license_device.rb', line 36

def self.nullables
  []
end

.optionalsObject

An array for optional fields



29
30
31
32
33
# File 'lib/verizon/models/v3_license_device.rb', line 29

def self.optionals
  %w[
    assignment_time
  ]
end