range property
Report data range used to generate the report. Possible string values are:
- "RANGE_UNSPECIFIED" : Default value when range is not specified or is unknown in this version.
- "CUSTOM_DATES" : Custom range specified by custom_start_date and custom_end_date fields.
- "CURRENT_DAY" : Current day.
- "PREVIOUS_DAY" : Previous day.
- "WEEK_TO_DATE" : All days, including the current day, since the most recent Sunday.
- "MONTH_TO_DATE" : All days, including the current day, since the start of the current month.
- "QUARTER_TO_DATE" : All days, including the current day, since the start of the current quarter.
- "YEAR_TO_DATE" : All days, including the current day, since the start of the current calendar year.
- "PREVIOUS_WEEK" : The previous completed week, beginning from Sunday.
- "PREVIOUS_MONTH" : The previous completed calendar month.
- "PREVIOUS_QUARTER" : The previous completed quarter.
- "PREVIOUS_YEAR" : The previous completed calendar year.
- "LAST_7_DAYS" : The previous 7 days, excluding the current day.
- "LAST_30_DAYS" : The previous 30 days, excluding the current day.
- "LAST_90_DAYS" : The previous 90 days, excluding the current day.
- "LAST_365_DAYS" : The previous 365 days, excluding the current day.
- "ALL_TIME" : All time for which data is available, excluding the current day.
- "LAST_14_DAYS" : The previous 14 days, excluding the current day.
- "LAST_60_DAYS" : The previous 60 days, excluding the current day.
Implementation
core.String? range;