Sha256: 2d215df8450d33f13c72383fcca3d11f977d83359312f899a03ffe4be1f0c43d
Contents?: true
Size: 1.19 KB
Versions: 3
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 [String,URI] define_property :unit_code, as: "unitCode", types: [ "string", "URI", ] # @return [BigDecimal,nil] define_property :amount_of_this_good, as: "amountOfThisGood", types: [ "Number", "null", ] # @return [OpenActive::Enums::Schema::BusinessFunction,nil] define_property :business_function, as: "businessFunction", types: [ "OpenActive::Enums::Schema::BusinessFunction", "null", ] # @return [OpenActive::Models::Schema::Service,OpenActive::Models::Schema::Product,URI] define_property :type_of_good, as: "typeOfGood", types: [ "OpenActive::Models::Schema::Service", "OpenActive::Models::Schema::Product", "URI", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems