Sha256: dd1616cdeba1a5766ce82ab620707f380872e289ac49d3d04708109387943597
Contents?: true
Size: 1019 Bytes
Versions: 1
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 [String,BigDecimal,nil] define_property :high_price, as: "highPrice", types: [ "string", "Number", "null", ] # @return [OpenActive::Models::Schema::Offer,OpenActive::Models::Schema::Demand,URI] define_property :offers, as: "offers", types: [ "OpenActive::Models::Schema::Offer", "OpenActive::Models::Schema::Demand", "URI", ] # @return [String,BigDecimal,nil] define_property :low_price, as: "lowPrice", types: [ "string", "Number", "null", ] # @return [int,nil] define_property :offer_count, as: "offerCount", types: [ "int", "null", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/aggregate_offer.rb |