Sha256: 8a7ccd6033c44b8509cc8d397062cf07a8e219fb0dc492892c712d61346758b5
Contents?: true
Size: 987 Bytes
Versions: 4
Compression:
Stored size: 987 Bytes
Contents
module OpenActive module Models # This type is derived from [PropertyValue](https://schema.org/PropertyValue), 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 PropertyValue < ::OpenActive::Models::Schema::PropertyValue # @!attribute type # @return [String] def type "PropertyValue" end # @return [String] define_property :name, as: "name", types: [ "string", ] # @return [String] define_property :description, as: "description", types: [ "string", ] # @return [String,URI] define_property :property_id, as: "propertyID", types: [ "string", "URI", ] # @return [int,String,nil] define_property :value, as: "value", types: [ "int", "string", "null", ] end end end
Version data entries
4 entries across 4 versions & 1 rubygems