cronSchedule property

  1. @TagNumber(5)
String cronSchedule

Cron-tab formatted schedule by which the job will execute. Format: minute, hour, day of month, month, day of week, e.g. 0 0 * * WED = every Wednesday More examples: https://crontab.guru/examples.html

Implementation

@$pb.TagNumber(5)
$core.String get cronSchedule => $_getSZ(4);
  1. @TagNumber(5)
void cronSchedule=(String v)

Implementation

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