Sha256: e498a6263608368e7d209f1752e7486e2d3f5a5818cc77e4ce3220726317a8a3
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
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
Version data entries
3 entries across 3 versions & 1 rubygems