Class: Google::Apis::DfareportingV3_4::Report::Schedule
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::Report::Schedule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb
Overview
The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
Instance Attribute Summary collapse
-
#active ⇒ Boolean
(also: #active?)
Whether the schedule is active or not.
-
#every ⇒ Fixnum
Defines every how many days, weeks or months the report should be run.
-
#expiration_date ⇒ Date
Corresponds to the JSON property
expirationDate
. -
#repeats ⇒ String
The interval for which the report is repeated.
-
#repeats_on_week_days ⇒ Array<String>
List of week days "WEEKLY" on which scheduled reports should run.
-
#runs_on_day_of_month ⇒ String
Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
-
#start_date ⇒ Date
Corresponds to the JSON property
startDate
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Schedule
constructor
A new instance of Schedule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Schedule
Returns a new instance of Schedule.
11149 11150 11151 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11149 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active ⇒ Boolean Also known as: active?
Whether the schedule is active or not. Must be set to either true or false.
Corresponds to the JSON property active
11107 11108 11109 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11107 def active @active end |
#every ⇒ Fixnum
Defines every how many days, weeks or months the report should be run. Needs
to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
Corresponds to the JSON property every
11114 11115 11116 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11114 def every @every end |
#expiration_date ⇒ Date
Corresponds to the JSON property expirationDate
11119 11120 11121 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11119 def expiration_date @expiration_date end |
#repeats ⇒ String
The interval for which the report is repeated. Note: - "DAILY" also requires
field "every" to be set. - "WEEKLY" also requires fields "every" and "
repeatsOnWeekDays" to be set. - "MONTHLY" also requires fields "every" and "
runsOnDayOfMonth" to be set.
Corresponds to the JSON property repeats
11127 11128 11129 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11127 def repeats @repeats end |
#repeats_on_week_days ⇒ Array<String>
List of week days "WEEKLY" on which scheduled reports should run.
Corresponds to the JSON property repeatsOnWeekDays
11132 11133 11134 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11132 def repeats_on_week_days @repeats_on_week_days end |
#runs_on_day_of_month ⇒ String
Enum to define for "MONTHLY" scheduled reports whether reports should be
repeated on the same day of the month as "startDate" or the same day of the
week of the month. Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-
02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month,
and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the
month.
Corresponds to the JSON property runsOnDayOfMonth
11142 11143 11144 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11142 def runs_on_day_of_month @runs_on_day_of_month end |
#start_date ⇒ Date
Corresponds to the JSON property startDate
11147 11148 11149 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11147 def start_date @start_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11154 11155 11156 11157 11158 11159 11160 11161 11162 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 11154 def update!(**args) @active = args[:active] if args.key?(:active) @every = args[:every] if args.key?(:every) @expiration_date = args[:expiration_date] if args.key?(:expiration_date) @repeats = args[:repeats] if args.key?(:repeats) @repeats_on_week_days = args[:repeats_on_week_days] if args.key?(:repeats_on_week_days) @runs_on_day_of_month = args[:runs_on_day_of_month] if args.key?(:runs_on_day_of_month) @start_date = args[:start_date] if args.key?(:start_date) end |