Class: Jamf::ChangeLogEntry
- Inherits:
-
JSONObject
- Object
- JSONObject
- Jamf::ChangeLogEntry
- Extended by:
- Immutable
- Defined in:
- lib/jamf/api/json_objects/change_log_entry.rb
Overview
A single entry in a resource's change history. This class is read-only
Constant Summary collapse
- OBJECT_MODEL =
{ # @!attribute [r] id # @return [String] The Jamf Pro user who made the change or note. id: { class: :integer, readonly: true }, # @!attribute [r] username # @return [String] The Jamf Pro user who made the change or note. username: { class: :string, readonly: true }, # @!attribute [r] date # @return [Jamf::Timestamp] When the change was made date: { class: Jamf::Timestamp, readonly: true }, # @!attribute [r] notes # @return [String] Notes entered manually or via the API. note: { class: :string, readonly: true }, # @!attribute [r] details # @return [String] Details of the change details: { class: :string, readonly: true } }.freeze
Instance Attribute Summary collapse
-
#date ⇒ Jamf::Timestamp
readonly
When the change was made.
-
#details ⇒ String
readonly
Details of the change.
-
#id ⇒ String
readonly
The Jamf Pro user who made the change or note.
-
#notes ⇒ String
readonly
Notes entered manually or via the API.
-
#username ⇒ String
readonly
The Jamf Pro user who made the change or note.
Class Method Summary collapse
- .mutable? ⇒ Boolean extended from Immutable
Constructor Details
This class inherits a constructor from Jamf::JSONObject
Instance Attribute Details
#date ⇒ Jamf::Timestamp (readonly)
Returns When the change was made.
|
# File 'lib/jamf/api/json_objects/change_log_entry.rb', line 49
|
#details ⇒ String (readonly)
Returns Details of the change.
|
# File 'lib/jamf/api/json_objects/change_log_entry.rb', line 63
|
#id ⇒ String (readonly)
Returns The Jamf Pro user who made the change or note.
|
# File 'lib/jamf/api/json_objects/change_log_entry.rb', line 35
|
#notes ⇒ String (readonly)
Returns Notes entered manually or via the API.
|
# File 'lib/jamf/api/json_objects/change_log_entry.rb', line 56
|
#username ⇒ String (readonly)
Returns The Jamf Pro user who made the change or note.
|
# File 'lib/jamf/api/json_objects/change_log_entry.rb', line 42
|