Ejemplo n.º 1
0
 /**
  * Returns a unique list of quarters used in offers.
  * @param string[] $locations Array of locations to look for quarters. Default null.
  * @param int $idLng Language Id. Default 1045.
  * @param string $object Type of object from which quarters will be given. Default null.
  * @param int $rent Offer's type of transaction from which quarters will be given. Acceptable values 0/1. Default null.
  * @param string[] $building_types Building's type from which quarters will be given. Acceptable values string[] or string with ',' delimiter
  * @return string[]
  */
 public function GetQuarters($locations = null, $idLng = 1045, $object = null, $rent = null, $building_types = null)
 {
     return Offers::GetQuarters($locations, $idLng, $object, $rent, $building_types);
 }