class Jamf::ManagementHistory::UserLocationChange
UserLocationChange
- a change in a device’s assigned user or location
This should only be instantiated by the ManagementHistory.user_location_history
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 change occurred, as a ruby Time
object
# File lib/jamf/api/classic/api_objects/management_history/user_location_change.rb 85 def date_time 86 JSS.epoch_to_time @date_time_epoch if @date_time_epoch 87 end