Class: Verizon::DeviceLoggingStatus
- Defined in:
- lib/verizon/models/device_logging_status.rb
Overview
Device logging status information.
Instance Attribute Summary collapse
-
#device_id ⇒ String
Device IMEI.
-
#expiry_date ⇒ Date
The date when device logging expires.
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, expiry_date = nil) ⇒ DeviceLoggingStatus
constructor
A new instance of DeviceLoggingStatus.
Methods inherited from BaseModel
Constructor Details
#initialize(device_id = nil, expiry_date = nil) ⇒ DeviceLoggingStatus
Returns a new instance of DeviceLoggingStatus.
38 39 40 41 |
# File 'lib/verizon/models/device_logging_status.rb', line 38 def initialize(device_id = nil, expiry_date = nil) @device_id = device_id @expiry_date = expiry_date end |
Instance Attribute Details
#device_id ⇒ String
Device IMEI.
14 15 16 |
# File 'lib/verizon/models/device_logging_status.rb', line 14 def device_id @device_id end |
#expiry_date ⇒ Date
The date when device logging expires.
18 19 20 |
# File 'lib/verizon/models/device_logging_status.rb', line 18 def expiry_date @expiry_date 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/device_logging_status.rb', line 44 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. device_id = hash.key?('deviceId') ? hash['deviceId'] : nil expiry_date = hash.key?('expiryDate') ? hash['expiryDate'] : nil # Create object from extracted values. DeviceLoggingStatus.new(device_id, expiry_date) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/verizon/models/device_logging_status.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['device_id'] = 'deviceId' @_hash['expiry_date'] = 'expiryDate' @_hash end |
.nullables ⇒ Object
An array for nullable fields
34 35 36 |
# File 'lib/verizon/models/device_logging_status.rb', line 34 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 |
# File 'lib/verizon/models/device_logging_status.rb', line 29 def self.optionals [] end |