Sha256: 015df8abf444071944bf77d27dbfafc504e4d6a4e888d3613c95af1db05dd1e2
Contents?: true
Size: 783 Bytes
Versions: 3
Compression:
Stored size: 783 Bytes
Contents
# frozen_string_literal: true module Immoscout module Models module Parts # Shared address-related property definitions. # See: https://bit.ly/3CSGnmN class Address < Base include Immoscout::Models::Concerns::Renderable include Immoscout::Models::Concerns::Propertiable property :street property :house_number property :postcode property :city property :wgs84_coordinate, coerce: Immoscout::Models::Parts::Coordinate property :international_country_region, coerce: Immoscout::Models::Parts::InternationalCountryRegion property :geo_hierarchy, coerce: Immoscout::Models::Parts::GeoHierarchy, readonly: true end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
immoscout-1.9.0 | lib/immoscout/models/parts/address.rb |
immoscout-1.8.1 | lib/immoscout/models/parts/address.rb |
immoscout-1.8.0 | lib/immoscout/models/parts/address.rb |