class Azure::IotHub::Mgmt::V2018_12_01_preview::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-12-01-preview/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