diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-10-04 08:49:01 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-10-04 08:49:01 +0200 |
commit | c808d938c78ef8dea89bee8fee3632497fd5e170 (patch) | |
tree | 037cf08848194efb49ceb2a47934b27f0dd84750 /lib/Travel/Status/DE/EFA.pm | |
parent | 669aa8b72cdf6d57d6f5f35d50f2a7e2489478e4 (diff) |
EFA, Trip: Add stop_id accessor
Diffstat (limited to 'lib/Travel/Status/DE/EFA.pm')
-rw-r--r-- | lib/Travel/Status/DE/EFA.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Travel/Status/DE/EFA.pm b/lib/Travel/Status/DE/EFA.pm index ada3b86..2fdaefc 100644 --- a/lib/Travel/Status/DE/EFA.pm +++ b/lib/Travel/Status/DE/EFA.pm @@ -394,6 +394,12 @@ sub stop_name { return $self->{response}{dm}{points}{point}{name}; } +sub stop_id { + my ($self) = @_; + + return $self->{response}{dm}{points}{point}{stateless}; +} + sub stops { my ($self) = @_; |