# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Compute::Mgmt::V2019_11_01 module Models # # Inner error details. # class InnerError include MsRestAzure # @return [String] The exception type. attr_accessor :exceptiontype # @return [String] The internal error message or exception dump. attr_accessor :errordetail # # Mapper for InnerError class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end