Class: Azure::IotHub::Mgmt::V2018_04_01::Models::RouteErrorPosition
- Inherits:
-
Object
- Object
- Azure::IotHub::Mgmt::V2018_04_01::Models::RouteErrorPosition
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-01/generated/azure_mgmt_iot_hub/models/route_error_position.rb
Overview
Position where the route error happened
Instance Attribute Summary collapse
-
#column ⇒ Integer
Column where the route error happened.
-
#line ⇒ Integer
Line where the route error happened.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RouteErrorPosition class as Ruby Hash.
Instance Attribute Details
#column ⇒ Integer
Returns Column where the route error happened.
19 20 21 |
# File 'lib/2018-04-01/generated/azure_mgmt_iot_hub/models/route_error_position.rb', line 19 def column @column end |
#line ⇒ Integer
Returns Line where the route error happened.
16 17 18 |
# File 'lib/2018-04-01/generated/azure_mgmt_iot_hub/models/route_error_position.rb', line 16 def line @line end |
Class Method Details
.mapper ⇒ Object
Mapper for RouteErrorPosition class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/2018-04-01/generated/azure_mgmt_iot_hub/models/route_error_position.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RouteErrorPosition', type: { name: 'Composite', class_name: 'RouteErrorPosition', model_properties: { line: { client_side_validation: true, required: false, serialized_name: 'line', type: { name: 'Number' } }, column: { client_side_validation: true, required: false, serialized_name: 'column', type: { name: 'Number' } } } } } end |