Method: JustimmoClient::V1::RealtyRequest.countries

Defined in:
lib/justimmo_client/api/v1/requests/realty_request.rb

.countries(all: false) ⇒ String

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns The requested XML.

Parameters:

  • all (Boolean) (defaults to: false)

    (false)

Returns:

  • (String)

    The requested XML.



112
113
114
115
116
# File 'lib/justimmo_client/api/v1/requests/realty_request.rb', line 112

def countries(all: false)
  with_error_handler do
    get("objekt/laender", alle: all ? 1 : 0)
  end
end