module OpenActive module Models class BookingService < ::OpenActive::Models::Schema::Service # @!attribute type # @return [String] def type "BookingService" end # @return [String] define_property :name, as: "name", types: [ "string", ] # @return [String] define_property :software_version, as: "softwareVersion", types: [ "string", ] # @return [Array] define_property :terms_of_service, as: "termsOfService", types: [ "OpenActive::Models::Terms[]", ] # @return [URI] define_property :url, as: "url", types: [ "URI", ] end end end