class Jamf::ManagementHistory::AuditEvent

AuditEvent - an auditiable event in a Jamf Object’s Management History

This should only be instantiated by the ManagementHistory.audits method when mixed in to Computers or Mobile devices.

That method will return an array of these objects.

Public Instance Methods

date_time() click to toggle source

@return [Time] When the event occured on the server, as a ruby Time object

   # File lib/jamf/api/classic/api_objects/management_history/audit_event.rb
62 def date_time
63   JSS.epoch_to_time @date_time_epoch if @date_time_epoch
64 end