class Jamf::ManagementHistory::ComputerUsageLog
ComputerUsageEvent - an usage event in a Jamf
Compter’s Management History
This should only be instantiated by the ManagementHistory.usage_logs
method when mixed in to Computers 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/computer_usage_log.rb 60 def date_time 61 JSS.epoch_to_time @date_time_epoch if @date_time_epoch 62 end