public function RestClientInterface::objectDescribe in Salesforce Suite 5.0.x
Same name and namespace in other branches
- 8.4 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::objectDescribe()
- 8.3 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::objectDescribe()
Retrieve all the metadata for an object.
Parameters
string $name: Object type name, E.g., Contact, Account, etc.
bool $reset: Whether to reset the cache and retrieve a fresh version from Salesforce.
Return value
\Drupal\salesforce\Rest\RestResponseDescribe The describe result.
1 method overrides RestClientInterface::objectDescribe()
- RestClient::objectDescribe in src/
Rest/ RestClient.php - Retrieve all the metadata for an object.
File
- src/
Rest/ RestClientInterface.php, line 206
Class
- RestClientInterface
- Objects, properties, and methods to communicate with the Salesforce REST API.
Namespace
Drupal\salesforce\RestCode
public function objectDescribe($name, $reset = FALSE);