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

- old
+ new

@@ -6,63 +6,63 @@ # @return [String] def type "schema:PriceSpecification" end - # @return [BigDecimal,nil] - define_property :min_price, as: "minPrice", types: [ - "Number", + # @return [String] + define_property :price_currency, as: "priceCurrency", types: [ + "string", + ] + + # @return [Date,DateTime,nil] + define_property :valid_from, as: "validFrom", types: [ + "Date", + "DateTime", "null", ] - # @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 [DateTime,Date,nil] - define_property :valid_from, as: "validFrom", types: [ - "DateTime", + # @return [Date,DateTime,nil] + define_property :valid_through, as: "validThrough", types: [ "Date", + "DateTime", "null", ] # @return [BigDecimal,nil] - define_property :max_price, as: "maxPrice", types: [ + define_property :min_price, as: "minPrice", types: [ "Number", "null", ] - # @return [String] - define_property :price_currency, as: "priceCurrency", types: [ + # @return [BigDecimal,String,nil] + define_property :price, as: "price", types: [ + "Number", "string", - ] - - # @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", + # @return [BigDecimal,nil] + define_property :max_price, as: "maxPrice", 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", ] end end end end