Sha256: 5cd220570a40c0c443a0bfca0f00c83057df7947c0e1683a8dffb2404c7ab528

Contents?: true

Size: 860 Bytes

Versions: 1

Compression:

Stored size: 860 Bytes

Contents

module OpenActive
  module Models
    module Schema
      class Seat < ::OpenActive::Models::Schema::Intangible
        # @!attribute type
        # @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",
          "string",
          "null",
        ]

        # @return [String]
        define_property :seat_section, as: "seatSection", types: [
          "string",
        ]

        # @return [String]
        define_property :seat_row, as: "seatRow", types: [
          "string",
        ]

        # @return [String]
        define_property :seat_number, as: "seatNumber", types: [
          "string",
        ]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/models/schema/seat.rb