Class: Jamf::MobileDevicePrestageName

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

Overview

A 'location' for a computer prestage in Jamf Pro

Constant Summary collapse

OBJECT_MODEL =
{

  # @!attribute id
  #   @return [Integer]
  id: {
    class: :integer
  },

  # @!attribute deviceName
  #   @return [String]
  deviceName: {
    class: :string
  },

  # @!attribute isUsed [r]
  #   @return [Boolean]
  used: {
    class: :boolean
  }
}.freeze

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::JSONObject

Instance Attribute Details

#deviceNameString

Returns:



# File 'lib/jamf/api/json_objects/md_prestage_name.rb', line 40

#idInteger

Returns:

  • (Integer)


# File 'lib/jamf/api/json_objects/md_prestage_name.rb', line 34

#isUsedBoolean (readonly)

Returns:

  • (Boolean)


# File 'lib/jamf/api/json_objects/md_prestage_name.rb', line 46