Class: Jamf::APIErrorDetail

Inherits:
JSONObject show all
Defined in:
lib/jamf/api/connection/api_error_styleguide.rb

Overview

an individual error report in an APIError object

Constant Summary collapse

OBJECT_MODEL =
{

  # @!attribute [r] objectId
  #   @return [String]
  objectId: {
    class: :string,
    readonly: true
  },

  # @!attribute [r] reasonCode
  #   @return [String]
  reasonCode: {
    class: :string,
    readonly: true
  },

  # @!attribute [r] field
  #   @return [String]
  field: {
    class: :string,
    readonly: true
  },

  # @!attribute [r] description
  #   @return [String]
  description: {
    class: :string,
    readonly: true
  }

}.freeze

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::JSONObject

Instance Attribute Details

#descriptionString (readonly)

Returns:



# File 'lib/jamf/api/connection/api_error_styleguide.rb', line 83

#fieldString (readonly)

Returns:



# File 'lib/jamf/api/connection/api_error_styleguide.rb', line 76

#objectIdString (readonly)

Returns:



# File 'lib/jamf/api/connection/api_error_styleguide.rb', line 62

#reasonCodeString (readonly)

Returns:



# File 'lib/jamf/api/connection/api_error_styleguide.rb', line 69