Sha256: f81c7f4d345f698edc65a8024060097cbb75c905ce2476d598092df4877e4062
Contents?: true
Size: 890 Bytes
Versions: 1
Compression:
Stored size: 890 Bytes
Contents
module OpenActive module Models module Schema class LocationFeatureSpecification < ::OpenActive::Models::Schema::PropertyValue # @!attribute type # @return [String] def type "schema:LocationFeatureSpecification" end # @return [OpenActive::Models::Schema::OpeningHoursSpecification,URI] define_property :hours_available, as: "hoursAvailable", types: [ "OpenActive::Models::Schema::OpeningHoursSpecification", "URI", ] # @return [DateTime,Date,nil] define_property :valid_from, as: "validFrom", types: [ "DateTime", "Date", "null", ] # @return [DateTime,Date,nil] define_property :valid_through, as: "validThrough", types: [ "DateTime", "Date", "null", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/location_feature_specification.rb |