Class: Verizon::AggregateUsageItem
- Defined in:
- lib/verizon/models/aggregate_usage_item.rb
Overview
Contains usage information per device.
Instance Attribute Summary collapse
-
#bytes_transferred ⇒ Integer
The amount of data transferred by the device reporting usage, measured in Bytes.
-
#example ⇒ Object
The amount of data transferred by the device reporting usage, measured in Bytes.
-
#imei ⇒ String
International Mobile Equipment Identifier.
-
#number_of_sessions ⇒ Integer
Number of sessions established by the device reporting usage.
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(imei = SKIP, number_of_sessions = SKIP, bytes_transferred = SKIP, example = SKIP) ⇒ AggregateUsageItem
constructor
A new instance of AggregateUsageItem.
Methods inherited from BaseModel
Constructor Details
#initialize(imei = SKIP, number_of_sessions = SKIP, bytes_transferred = SKIP, example = SKIP) ⇒ AggregateUsageItem
Returns a new instance of AggregateUsageItem.
56 57 58 59 60 61 62 63 64 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 56 def initialize(imei = SKIP, number_of_sessions = SKIP, bytes_transferred = SKIP, example = SKIP) @imei = imei unless imei == SKIP @number_of_sessions = number_of_sessions unless number_of_sessions == SKIP @bytes_transferred = bytes_transferred unless bytes_transferred == SKIP @example = example unless example == SKIP end |
Instance Attribute Details
#bytes_transferred ⇒ Integer
The amount of data transferred by the device reporting usage, measured in Bytes.
24 25 26 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 24 def bytes_transferred @bytes_transferred end |
#example ⇒ Object
The amount of data transferred by the device reporting usage, measured in Bytes.
29 30 31 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 29 def example @example end |
#imei ⇒ String
International Mobile Equipment Identifier. This is the ID of the device reporting usage.
15 16 17 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 15 def imei @imei end |
#number_of_sessions ⇒ Integer
Number of sessions established by the device reporting usage.
19 20 21 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 19 def number_of_sessions @number_of_sessions end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 67 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. imei = hash.key?('imei') ? hash['imei'] : SKIP number_of_sessions = hash.key?('numberOfSessions') ? hash['numberOfSessions'] : SKIP bytes_transferred = hash.key?('bytesTransferred') ? hash['bytesTransferred'] : SKIP example = hash.key?('example') ? hash['example'] : SKIP # Create object from extracted values. AggregateUsageItem.new(imei, number_of_sessions, bytes_transferred, example) end |
.names ⇒ Object
A mapping from model property names to API property names.
32 33 34 35 36 37 38 39 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 32 def self.names @_hash = {} if @_hash.nil? @_hash['imei'] = 'imei' @_hash['number_of_sessions'] = 'numberOfSessions' @_hash['bytes_transferred'] = 'bytesTransferred' @_hash['example'] = 'example' @_hash end |
.nullables ⇒ Object
An array for nullable fields
52 53 54 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 52 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
42 43 44 45 46 47 48 49 |
# File 'lib/verizon/models/aggregate_usage_item.rb', line 42 def self.optionals %w[ imei number_of_sessions bytes_transferred example ] end |