Sha256: 039f8500253c76f4e2ea39ba6389bfb49b933ef60ac81c3848422aa11d786640
Contents?: true
Size: 581 Bytes
Versions: 15
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module PriceHubble # The nested PriceHubble property quality object. # # @see https://docs.pricehubble.com/#types-property class PropertyQualities < BaseEntity # Mapped and tracked attributes tracked_attr :bathrooms, :kitchen, :flooring, :windows, :masonry # Define attribute types for casting with_options(values: Property::QUALITIES) 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
15 entries across 15 versions & 1 rubygems