Sha256: 61fa9ecbfd203d432772d221c12376832d03d6a409a2594f0d2f5cab97a4e802
Contents?: true
Size: 1.44 KB
Versions: 3
Compression:
Stored size: 1.44 KB
Contents
module OpenActive module Models module Schema class GeoShape < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:GeoShape" end # @return [String] define_property :polygon, as: "polygon", types: [ "string", ] # @return [String] define_property :circle, as: "circle", types: [ "string", ] # @return [String,OpenActive::Models::Schema::PostalAddress,URI] define_property :address, as: "address", types: [ "string", "OpenActive::Models::Schema::PostalAddress", "URI", ] # @return [String,OpenActive::Models::Schema::Country,URI] define_property :address_country, as: "addressCountry", types: [ "string", "OpenActive::Models::Schema::Country", "URI", ] # @return [String] define_property :line, as: "line", types: [ "string", ] # @return [String] define_property :box, as: "box", types: [ "string", ] # @return [String] define_property :postal_code, as: "postalCode", types: [ "string", ] # @return [BigDecimal,String,nil] define_property :elevation, as: "elevation", types: [ "Number", "string", "null", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.2.2 | lib/openactive/models/schema/geo_shape.rb |
openactive-0.2.1 | lib/openactive/models/schema/geo_shape.rb |
openactive-0.2.0 | lib/openactive/models/schema/geo_shape.rb |