class Azure::IotHub::Mgmt::V2018_04_01::Models::RouteErrorPosition
Position where the route error happened
Attributes
column[RW]
@return [Integer] Column where the route error happened
line[RW]
@return [Integer] Line where the route error happened
Public Class Methods
mapper()
click to toggle source
Mapper for RouteErrorPosition
class as Ruby Hash. This will be used for serialization/deserialization.
# 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