class Azure::Compute::Mgmt::V2018_04_01::Models::InnerError

Inner error details.

Attributes

errordetail[RW]

@return [String] The internal error message or exception dump.

exceptiontype[RW]

@return [String] The exception type.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-04-01/generated/azure_mgmt_compute/models/inner_error.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'InnerError',
    type: {
      name: 'Composite',
      class_name: 'InnerError',
      model_properties: {
        exceptiontype: {
          client_side_validation: true,
          required: false,
          serialized_name: 'exceptiontype',
          type: {
            name: 'String'
          }
        },
        errordetail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errordetail',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end