Method: Bahn::Stop#arrival_time

Defined in:
lib/bahn.rb

#arrival_timeObject

Returns the ClockTime at which the service arrives at this station, or nil if not specified (e.g. because this is the origin station for the service, or is for boarding only).



381
382
383
384
# File 'lib/bahn.rb', line 381

def arrival_time
  get_full_details if @arrival_time.nil?
  @arrival_time == :none ? nil : @arrival_time
end