Sha256: 22c8a92e2c0f32fc1ca2da43c9b331626dd6ce9090660140adbdfddb1f8d781f
Contents?: true
Size: 762 Bytes
Versions: 4
Compression:
Stored size: 762 Bytes
Contents
module OpenActive module Models # This type is derived from [QuantitativeValue](https://schema.org/QuantitativeValue), which means that any of this type's properties within schema.org may also be used. Note however the properties on this page must be used in preference if a relevant property is available. 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
4 entries across 4 versions & 1 rubygems