55use Trafiklab \Common \Model \Enum \TransportType ;
66
77/**
8- * A stop location found by a FindStopLocationRequest .
8+ * A stop location found by a StopLocationLookupRequest .
99 *
10- * @see FindStopLocationRequest
11- * @see FindStopLocationResponse
10+ * @see StopLocationLookupRequest
11+ * @see StopLocationLookupResponse
1212 *
1313 * @api
1414 * @package Trafiklab\Common\Model\Contract
1515 */
16- interface FindStopLocationEntry
16+ interface StopLocationLookupEntry
1717{
1818 /**
19- * Get the id of this stop area .
19+ * Get the id of this stop location .
2020 *
21- * @return string The id of this stop area .
21+ * @return string The id of this stop location .
2222 */
2323 public function getId (): string ;
2424
2525 /**
26- * Get the name of this stop area .
26+ * Get the name of this stop location .
2727 *
28- * @return string The name of this stop area .
28+ * @return string The name of this stop location .
2929 */
3030 public function getName (): string ;
3131
3232 /**
33- * The longitude of this stop area .
33+ * The longitude of this stop location .
3434 *
35- * @return float The longitude of this stop area .
35+ * @return float The longitude of this stop location .
3636 */
3737 public function getLongitude (): float ;
3838
3939 /**
40- * The latitude of this stop area .
40+ * The latitude of this stop location .
4141 *
42- * @return float The latitude of this stop area .
42+ * @return float The latitude of this stop location .
4343 */
4444 public function getLatitude (): float ;
4545
@@ -61,5 +61,5 @@ public function getWeight(): int;
6161 *
6262 * @see TransportType
6363 */
64- public function isStopAreaForTransportType (int $ transportType ): bool ;
64+ public function isStopLocationForTransportType (int $ transportType ): bool ;
6565}
0 commit comments