lib/openactive/models/schema/price_specification.rb in openactive-0.2.2 vs lib/openactive/models/schema/price_specification.rb in openactive-0.3.0

- old
+ new

@@ -6,27 +6,26 @@ # @return [String] def type "schema:PriceSpecification" end - # @return [DateTime,Date,nil] - define_property :valid_from, as: "validFrom", types: [ - "DateTime", - "Date", + # @return [BigDecimal,nil] + define_property :min_price, as: "minPrice", types: [ + "Number", "null", ] - # @return [BigDecimal,String,nil] - define_property :price, as: "price", types: [ - "Number", - "string", - "null", + # @return [OpenActive::Models::Schema::QuantitativeValue,URI] + define_property :eligible_quantity, as: "eligibleQuantity", types: [ + "OpenActive::Models::Schema::QuantitativeValue", + "URI", ] - # @return [BigDecimal,nil] - define_property :min_price, as: "minPrice", types: [ - "Number", + # @return [DateTime,Date,nil] + define_property :valid_from, as: "validFrom", types: [ + "DateTime", + "Date", "null", ] # @return [BigDecimal,nil] define_property :max_price, as: "maxPrice", types: [ @@ -37,31 +36,32 @@ # @return [String] define_property :price_currency, as: "priceCurrency", types: [ "string", ] - # @return [OpenActive::Models::Schema::PriceSpecification,URI] - define_property :eligible_transaction_volume, as: "eligibleTransactionVolume", types: [ - "OpenActive::Models::Schema::PriceSpecification", - "URI", - ] - - # @return [OpenActive::Models::Schema::QuantitativeValue,URI] - define_property :eligible_quantity, as: "eligibleQuantity", types: [ - "OpenActive::Models::Schema::QuantitativeValue", - "URI", - ] - # @return [Boolean,nil] define_property :value_added_tax_included, as: "valueAddedTaxIncluded", types: [ "bool", "null", ] + # @return [OpenActive::Models::Schema::PriceSpecification,URI] + define_property :eligible_transaction_volume, as: "eligibleTransactionVolume", types: [ + "OpenActive::Models::Schema::PriceSpecification", + "URI", + ] + # @return [DateTime,Date,nil] define_property :valid_through, as: "validThrough", types: [ "DateTime", "Date", + "null", + ] + + # @return [BigDecimal,String,nil] + define_property :price, as: "price", types: [ + "Number", + "string", "null", ] end end end