Sha256: e788c812723179cf364a1154339ed3f92f77d24cc5498e3082ddea4ba7fb355d
Contents?: true
Size: 1.44 KB
Versions: 2
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 [OpenActive::Models::Schema::Country,String,URI] define_property :address_country, as: "addressCountry", types: [ "OpenActive::Models::Schema::Country", "string", "URI", ] # @return [String] define_property :box, as: "box", types: [ "string", ] # @return [OpenActive::Models::Schema::PostalAddress,String,URI] define_property :address, as: "address", types: [ "OpenActive::Models::Schema::PostalAddress", "string", "URI", ] # @return [String] define_property :postal_code, as: "postalCode", types: [ "string", ] # @return [String] define_property :line, as: "line", types: [ "string", ] # @return [String] define_property :circle, as: "circle", types: [ "string", ] # @return [BigDecimal,String,nil] define_property :elevation, as: "elevation", types: [ "Number", "string", "null", ] # @return [String] define_property :polygon, as: "polygon", types: [ "string", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/geo_shape.rb |
openactive-0.4.0 | lib/openactive/models/schema/geo_shape.rb |