GetAllLookupValues ( string $resource )
Gets an array of all lookup values for the given Resource
$lookups = $rets->GetAllLookupValues("Property");
foreach ($lookups as $looks) {
echo "+ {$looks['Lookup']} has the following possible values:\n";
foreach ($looks['Values'] as $val) {
echo " + {$val['Value']} means {$val['LongValue']}\n";
}
}+ Status has the following possible values: + S means Sold + O means Off Market + A means Active + W means Withdrawn + U means Under Contract + C means Closed + T means Temp Off Market + P means Pending + L means Leased + X means Expired