timeZone property

  1. @TagNumber(6)
String get timeZone

Timezone on which the cron_schedule. The value of this field must be a time zone name from the tz database. TZ Database: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Note that some time zones include a provision for daylight savings time. The rules for daylight saving time are determined by the chosen tz. For UTC use the string "utc". If a time zone is not specified, the default will be in UTC (also known as GMT).

Implementation

@$pb.TagNumber(6)
$core.String get timeZone => $_getSZ(5);
  1. @TagNumber(6)
set timeZone (String v)

Implementation

@$pb.TagNumber(6)
set timeZone($core.String v) { $_setString(5, v); }