Class: Jamf::InventoryPreloadExtensionAttribute

Inherits:
JSONObject show all
Defined in:
lib/jamf/api/json_objects/inventory_preload_extension_attribute.rb

Overview

Classes

Constant Summary collapse

OBJECT_MODEL =
{

  # TODO: validation for ea's existance and value data type, once EAs are
  # implemented in JPAPI

  # @!attribute name
  #   @return [String]
  name: {
    class: :string,
    required: true
  },

  # @!attribute value
  #   @return [#to_s]
  value: {
    class: :string
  }

}.freeze

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::JSONObject

Instance Attribute Details

#nameString

Returns:



# File 'lib/jamf/api/json_objects/inventory_preload_extension_attribute.rb', line 38

#value#to_s

Returns:

  • (#to_s)


# File 'lib/jamf/api/json_objects/inventory_preload_extension_attribute.rb', line 45