lib/openactive/models/schema/seat.rb in openactive-0.3.0 vs lib/openactive/models/schema/seat.rb in openactive-0.4.0
- old
+ new
@@ -6,28 +6,28 @@
# @return [String]
def type
"schema:Seat"
end
- # @return [OpenActive::Enums::Schema::QualitativeValue,String,nil]
- define_property :seating_type, as: "seatingType", types: [
- "OpenActive::Enums::Schema::QualitativeValue",
+ # @return [String]
+ define_property :seat_number, as: "seatNumber", types: [
"string",
- "null",
]
# @return [String]
define_property :seat_section, as: "seatSection", types: [
"string",
]
- # @return [String]
- define_property :seat_row, as: "seatRow", types: [
+ # @return [OpenActive::Enums::Schema::QualitativeValue,String,nil]
+ define_property :seating_type, as: "seatingType", types: [
+ "OpenActive::Enums::Schema::QualitativeValue",
"string",
+ "null",
]
# @return [String]
- define_property :seat_number, as: "seatNumber", types: [
+ define_property :seat_row, as: "seatRow", types: [
"string",
]
end
end
end