startDate property

  1. @TagNumber(3)
String get startDate

The scheduled start date of this trip instance. Must be provided to disambiguate trips that are so late as to collide with a scheduled trip on a next day. For example, for a train that departs 8:00 and 20:00 every day, and is 12 hours late, there would be two distinct trips on the same time. This field can be provided but is not mandatory for schedules in which such collisions are impossible - for example, a service running on hourly schedule where a vehicle that is one hour late is not considered to be related to schedule anymore. In YYYYMMDD format.

Implementation

@$pb.TagNumber(3)
$core.String get startDate => $_getSZ(2);
  1. @TagNumber(3)
set startDate (String v)

Implementation

@$pb.TagNumber(3)
set startDate($core.String v) { $_setString(2, v); }