Sha256: 4a937acfd8b04078bfbdfbb71c04e89875052c2c6ec250252f5c378600699785
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module OpenActive module Models module Schema class TypeAndQuantityNode < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:TypeAndQuantityNode" end # @return [String] define_property :unit_text, as: "unitText", types: [ "string", ] # @return [OpenActive::Enums::Schema::BusinessFunction,nil] define_property :business_function, as: "businessFunction", types: [ "OpenActive::Enums::Schema::BusinessFunction", "null", ] # @return [OpenActive::Models::Schema::Product,OpenActive::Models::Schema::Service,URI] define_property :type_of_good, as: "typeOfGood", types: [ "OpenActive::Models::Schema::Product", "OpenActive::Models::Schema::Service", "URI", ] # @return [BigDecimal,nil] define_property :amount_of_this_good, as: "amountOfThisGood", types: [ "Number", "null", ] # @return [String,URI] define_property :unit_code, as: "unitCode", types: [ "string", "URI", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/type_and_quantity_node.rb |