class Google::Apis::AndroidenterpriseV1::MaintenanceWindow

Maintenance window for managed Google Play Accounts. This allows Play store to update the apps on the foreground in the designated window.

Attributes

duration_ms[RW]

Duration of the maintenance window, in milliseconds. The duration must be between 30 minutes and 24 hours (inclusive). Corresponds to the JSON property `durationMs` @return [Fixnum]

start_time_after_midnight_ms[RW]

Start time of the maintenance window, in milliseconds after midnight on the device. Windows can span midnight. Corresponds to the JSON property `startTimeAfterMidnightMs` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 1313
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidenterprise_v1/classes.rb, line 1318
def update!(**args)
  @duration_ms = args[:duration_ms] if args.key?(:duration_ms)
  @start_time_after_midnight_ms = args[:start_time_after_midnight_ms] if args.key?(:start_time_after_midnight_ms)
end