Sha256: 425e9e676dc478ae710696c0ee5637f05da29ea16145490d093a67e258df291c
Contents?: true
Size: 585 Bytes
Versions: 19
Compression:
Stored size: 585 Bytes
Contents
# frozen_string_literal: true module PriceHubble # The nested PriceHubble property condition object. # # @see https://docs.pricehubble.com/#types-property class PropertyConditions < BaseEntity # Mapped and tracked attributes tracked_attr :bathrooms, :kitchen, :flooring, :windows, :masonry # Define attribute types for casting with_options(values: Property::CONDITIONS) do typed_attr :bathrooms, :enum typed_attr :kitchen, :enum typed_attr :flooring, :enum typed_attr :windows, :enum typed_attr :masonry, :enum end end end
Version data entries
19 entries across 19 versions & 1 rubygems