Class: Verizon::V2LicenseDevice
- Defined in:
- lib/verizon/models/v2_license_device.rb
Overview
Device IMEI list.
Instance Attribute Summary collapse
-
#assignment_time ⇒ String
License assignment time.
-
#device_id ⇒ String
Device IMEI.
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(device_id = nil, assignment_time = SKIP) ⇒ V2LicenseDevice
constructor
A new instance of V2LicenseDevice.
Methods inherited from BaseModel
Constructor Details
#initialize(device_id = nil, assignment_time = SKIP) ⇒ V2LicenseDevice
Returns a new instance of V2LicenseDevice.
40 41 42 43 |
# File 'lib/verizon/models/v2_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_time ⇒ String
License assignment time.
18 19 20 |
# File 'lib/verizon/models/v2_license_device.rb', line 18 def assignment_time @assignment_time end |
#device_id ⇒ String
Device IMEI.
14 15 16 |
# File 'lib/verizon/models/v2_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/v2_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. V2LicenseDevice.new(device_id, assignment_time) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/verizon/models/v2_license_device.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['device_id'] = 'deviceId' @_hash['assignment_time'] = 'assignmentTime' @_hash end |
.nullables ⇒ Object
An array for nullable fields
36 37 38 |
# File 'lib/verizon/models/v2_license_device.rb', line 36 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 32 33 |
# File 'lib/verizon/models/v2_license_device.rb', line 29 def self.optionals %w[ assignment_time ] end |