Sha256: 8757815144824df53f4ae2e9ae790861d6688d73d17b8e311340d7d67f4d998b
Contents?: true
Size: 791 Bytes
Versions: 1
Compression:
Stored size: 791 Bytes
Contents
module OpenActive module Models module Schema class CompoundPriceSpecification < ::OpenActive::Models::Schema::PriceSpecification # @!attribute type # @return [String] def type "schema:CompoundPriceSpecification" end # @return [OpenActive::Models::Schema::UnitPriceSpecification,URI] define_property :price_component, as: "priceComponent", types: [ "OpenActive::Models::Schema::UnitPriceSpecification", "URI", ] # @return [OpenActive::Enums::Schema::PriceTypeEnumeration,String,nil] define_property :price_type, as: "priceType", types: [ "OpenActive::Enums::Schema::PriceTypeEnumeration", "string", "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/compound_price_specification.rb |