Sha256: d22a67afcd6a5e83414885d8caecb666c77109ffc9f1691b622421068a13b1c4
Contents?: true
Size: 1.35 KB
Versions: 3
Compression:
Stored size: 1.35 KB
Contents
module OpenActive module Models module Schema class GeoCoordinates < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:GeoCoordinates" end # @return [String,OpenActive::Models::Schema::PostalAddress,URI] define_property :address, as: "address", types: [ "string", "OpenActive::Models::Schema::PostalAddress", "URI", ] # @return [String,BigDecimal,nil] define_property :longitude, as: "longitude", types: [ "string", "Number", "null", ] # @return [String,OpenActive::Models::Schema::Country,URI] define_property :address_country, as: "addressCountry", types: [ "string", "OpenActive::Models::Schema::Country", "URI", ] # @return [String,BigDecimal,nil] define_property :latitude, as: "latitude", types: [ "string", "Number", "null", ] # @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