lib/openactive/models/schema/train_trip.rb in openactive-0.3.0 vs lib/openactive/models/schema/train_trip.rb in openactive-0.4.0

- old
+ new

@@ -7,36 +7,36 @@ def type "schema:TrainTrip" end # @return [String] - define_property :train_name, as: "trainName", types: [ + define_property :train_number, as: "trainNumber", types: [ "string", ] # @return [OpenActive::Models::Schema::TrainStation,URI] - define_property :departure_station, as: "departureStation", types: [ + define_property :arrival_station, as: "arrivalStation", types: [ "OpenActive::Models::Schema::TrainStation", "URI", ] # @return [String] - define_property :departure_platform, as: "departurePlatform", types: [ + define_property :arrival_platform, as: "arrivalPlatform", types: [ "string", ] # @return [String] - define_property :train_number, as: "trainNumber", types: [ + define_property :train_name, as: "trainName", types: [ "string", ] # @return [String] - define_property :arrival_platform, as: "arrivalPlatform", types: [ + define_property :departure_platform, as: "departurePlatform", types: [ "string", ] # @return [OpenActive::Models::Schema::TrainStation,URI] - define_property :arrival_station, as: "arrivalStation", types: [ + define_property :departure_station, as: "departureStation", types: [ "OpenActive::Models::Schema::TrainStation", "URI", ] end end