class Google::Apis::DoubleclickbidmanagerV1::QuerySchedule

Information on how frequently and when to run a query.

Attributes

end_time_ms[RW]

Datetime to periodically run the query until. Corresponds to the JSON property `endTimeMs` @return [String]

frequency[RW]

How often the query is run. Corresponds to the JSON property `frequency` @return [String]

next_run_minute_of_day[RW]

Time of day at which a new report will be generated, represented as minutes past midnight. Range is 0 to 1439. Only applies to scheduled reports. Corresponds to the JSON property `nextRunMinuteOfDay` @return [Fixnum]

next_run_timezone_code[RW]

Canonical timezone code for report generation time. Defaults to America/ New_York. Corresponds to the JSON property `nextRunTimezoneCode` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 475
def update!(**args)
  @end_time_ms = args[:end_time_ms] if args.key?(:end_time_ms)
  @frequency = args[:frequency] if args.key?(:frequency)
  @next_run_minute_of_day = args[:next_run_minute_of_day] if args.key?(:next_run_minute_of_day)
  @next_run_timezone_code = args[:next_run_timezone_code] if args.key?(:next_run_timezone_code)
end