Sha256: 1aea0d1b6f5e74d815c8a91dfc567051505d93243fc62bf6e8b7d89b603e2ec5
Contents?: true
Size: 636 Bytes
Versions: 6
Compression:
Stored size: 636 Bytes
Contents
module OpenActive module Models # This type is derived from https://schema.org/QuantitativeValue, which means that any of this type's properties within schema.org may also be used. class QuantitativeValue < ::OpenActive::Models::Schema::QuantitativeValue # @!attribute type # @return [String] def type "QuantitativeValue" end # @return [int,nil] define_property :max_value, as: "maxValue", types: [ "int", "null", ] # @return [int,nil] define_property :min_value, as: "minValue", types: [ "int", "null", ] end end end
Version data entries
6 entries across 6 versions & 1 rubygems