frequency property

String? frequency
getter/setter pair

How frequently to run the query.

If set to ONE_TIME, the query will only be run when queries.run is called. Possible string values are:

  • "FREQUENCY_UNSPECIFIED" : Default value when frequency is not specified or is unknown in this version.
  • "ONE_TIME" : Only when the query is run manually.
  • "DAILY" : Once a day.
  • "WEEKLY" : Once a week.
  • "SEMI_MONTHLY" : Twice a month.
  • "MONTHLY" : Once a month.
  • "QUARTERLY" : Once a quarter.
  • "YEARLY" : Once a year.

Implementation

core.String? frequency;