@@ -350,9 +350,9 @@ export namespace ArrivalAndDepartureRetrieveResponse {
350350 frequency ?: string ;
351351
352352 /**
353- * Last known location of the transit vehicle.
353+ * Last known location of the transit vehicle (optional) .
354354 */
355- lastKnownLocation ?: TripStatus . LastKnownLocation ;
355+ lastKnownLocation ?: TripStatus . LastKnownLocation | null ;
356356
357357 /**
358358 * Last known orientation value received in real-time from the transit vehicle.
@@ -399,7 +399,7 @@ export namespace ArrivalAndDepartureRetrieveResponse {
399399
400400 export namespace TripStatus {
401401 /**
402- * Last known location of the transit vehicle.
402+ * Last known location of the transit vehicle (optional) .
403403 */
404404 export interface LastKnownLocation {
405405 /**
@@ -728,9 +728,9 @@ export namespace ArrivalAndDepartureListResponse {
728728 frequency ?: string ;
729729
730730 /**
731- * Last known location of the transit vehicle.
731+ * Last known location of the transit vehicle (optional) .
732732 */
733- lastKnownLocation ?: TripStatus . LastKnownLocation ;
733+ lastKnownLocation ?: TripStatus . LastKnownLocation | null ;
734734
735735 /**
736736 * Last known orientation value received in real-time from the transit vehicle.
@@ -777,7 +777,7 @@ export namespace ArrivalAndDepartureListResponse {
777777
778778 export namespace TripStatus {
779779 /**
780- * Last known location of the transit vehicle.
780+ * Last known location of the transit vehicle (optional) .
781781 */
782782 export interface LastKnownLocation {
783783 /**
0 commit comments