module OpenActive module Models module Schema class PriceSpecification < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:PriceSpecification" end # @return [DateTime,Date,nil] define_property :valid_from, as: "validFrom", types: [ "DateTime", "Date", "null", ] # @return [BigDecimal,String,nil] define_property :price, as: "price", types: [ "Number", "string", "null", ] # @return [BigDecimal,nil] define_property :min_price, as: "minPrice", types: [ "Number", "null", ] # @return [BigDecimal,nil] define_property :max_price, as: "maxPrice", types: [ "Number", "null", ] # @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 [DateTime,Date,nil] define_property :valid_through, as: "validThrough", types: [ "DateTime", "Date", "null", ] end end end end