Sha256: 3767558a355bde4b097c5fd7100e40fe4097598819f1a9e4b67d4c7041ccda4c
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 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 [BigDecimal,nil] define_property :amount_of_this_good, as: "amountOfThisGood", types: [ "Number", "null", ] # @return [OpenActive::Models::Schema::Service,OpenActive::Models::Schema::Product] define_property :type_of_good, as: "typeOfGood", types: [ "OpenActive::Models::Schema::Service", "OpenActive::Models::Schema::Product", ] # @return [String,URI] define_property :unit_code, as: "unitCode", types: [ "string", "URI", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems