Commit c1344c01 authored by András Wippelhauser's avatar András Wippelhauser
Browse files

Finalize estimated departure time in intent indication

parent 7c0c2909
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -94,18 +94,18 @@ ParkingSpaceSegments ::= SEQUENCE (SIZE (0..31)) OF ParkingSpaceSegment
 *
 * @field spaceId: The identifier of the parking space. Unique for each sender.
 *
 * @field reporter: The station id of the reporter of the parkicular space.
 * @field reporter: The station id of the reporter of the parkicular space. Shall be filled if the reporter is not the same as the sender.
 *
 * @field estimatedArrivalTime: The estimated time of arrival to the parking space.
 *
 * @field estimatedDepartureTime: TODO: This may be redundant. Eric will check if it is.
 * @field estimatedDepartureTime: The estimated time of departure from the parking space. This field is used to indicate that the sender vehicle is about to leave the parking space.
 *
 * @category:
 * @revision: Created in V2.1.1
*/
ParkingSpaceIntentIndication ::= SEQUENCE {
    spaceId                 Identifier2B, -- TODO: how to tell which to use in segment
    reporter                StationId,
    reporter                StationId OPTIONAL,
    estimatedArrivalTime    TimestampIts OPTIONAL,
    estimatedDepartureTime  TimestampIts OPTIONAL
}