class Jamf::ManagementHistory::MacAppStoreApp

MacAppStoreApp - an app store app deployed to a Computer

This should only be instantiated by the ManagementHistory.app_store_app_history method when mixed in to Computers.

That method will return an array of these objects.

NOTE: some attributes will be nil for some statuses (e.g. no size data if not installed)

Public Instance Methods

deployed() click to toggle source

@return [Time] If :pending, when was it first deployed as

as a ruby Time object
   # File lib/jamf/api/classic/api_objects/management_history/mac_app_store_app.rb
77 def deployed
78   JSS.epoch_to_time @deployed_epoch if @deployed_epoch
79 end
last_push()
Alias for: last_update
last_update() click to toggle source

@return [Time] If :pending, when as the last attempt to

install it, as a ruby Time object
   # File lib/jamf/api/classic/api_objects/management_history/mac_app_store_app.rb
85 def last_update
86   JSS.epoch_to_time @last_update_epoch if @last_update_epoch
87 end
Also aliased as: last_push