Sha256: c1c678325c5c1abb370a50c82079ee466c9cfaf8c07d68a00f3b3b06364c9f9a
Contents?: true
Size: 1019 Bytes
Versions: 2
Compression:
Stored size: 1019 Bytes
Contents
module OpenActive module Models module Schema class AggregateOffer < ::OpenActive::Models::Schema::Offer # @!attribute type # @return [String] def type "schema:AggregateOffer" end # @return [OpenActive::Models::Schema::Demand,OpenActive::Models::Schema::Offer,URI] define_property :offers, as: "offers", types: [ "OpenActive::Models::Schema::Demand", "OpenActive::Models::Schema::Offer", "URI", ] # @return [BigDecimal,String,nil] define_property :high_price, as: "highPrice", types: [ "Number", "string", "null", ] # @return [BigDecimal,String,nil] define_property :low_price, as: "lowPrice", types: [ "Number", "string", "null", ] # @return [int,nil] define_property :offer_count, as: "offerCount", types: [ "int", "null", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/aggregate_offer.rb |
openactive-0.4.0 | lib/openactive/models/schema/aggregate_offer.rb |