class Azure::Logic::Mgmt::V2016_06_01::Models::ErrorProperties

Error properties indicate why the Logic service was not able to process the incoming request. The reason is provided in the error message.

Attributes

code[RW]

@return [String] Error code.

message[RW]

@return [String] Error message indicating why the operation failed.

Public Class Methods

mapper() click to toggle source

Mapper for ErrorProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-06-01/generated/azure_mgmt_logic/models/error_properties.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ErrorProperties',
    type: {
      name: 'Composite',
      class_name: 'ErrorProperties',
      model_properties: {
        code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'code',
          type: {
            name: 'String'
          }
        },
        message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'message',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end