class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ErrorDetail

The error details.

Attributes

description[RW]

@return [String] The error description.

detail[RW]

@return [String] Additional details related to the error.

kb_url[RW]

@return [String] The knowledge base article url which contains more information about the error.

object_with_sync_error[RW]

@return [MergedExportError] The object with sync error.

objects_with_sync_error[RW]

@return [ObjectWithSyncError] The list of objects with sync errors.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/error_detail.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ErrorDetail',
    type: {
      name: 'Composite',
      class_name: 'ErrorDetail',
      model_properties: {
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        kb_url: {
          client_side_validation: true,
          required: false,
          serialized_name: 'kbUrl',
          type: {
            name: 'String'
          }
        },
        detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'detail',
          type: {
            name: 'String'
          }
        },
        objects_with_sync_error: {
          client_side_validation: true,
          required: false,
          serialized_name: 'objectsWithSyncError',
          type: {
            name: 'Composite',
            class_name: 'ObjectWithSyncError'
          }
        },
        object_with_sync_error: {
          client_side_validation: true,
          required: false,
          serialized_name: 'objectWithSyncError',
          type: {
            name: 'Composite',
            class_name: 'MergedExportError'
          }
        }
      }
    }
  }
end