Class: Jamf::Locale

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

Overview

A Time Zone known to Jamf Pro

Constant Summary collapse

OBJECT_MODEL =

Object Model / Attributes See APIObject class documentation for details of how the OBJECT_MODEL hash works.

{

  # @!attribute [r] zoneId
  #   @return [String]
  identifier: {
    class: :string,
    identifier: :primary,
    read_only: true,
    aliases: [:id]
  },

  # @!attribute displayName
  #   @return [String]
  description: {
    class: :string,
    read_only: true,
    aliases: %i[name desc]
  }
}.freeze

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::JSONObject

Instance Attribute Details

#displayNameString

Returns:



# File 'lib/jamf/api/json_objects/locale.rb', line 47