public function RestClientInterface::objects in Salesforce Suite 8.4
Same name and namespace in other branches
- 8.3 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::objects()
- 5.0.x src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::objects()
Available objects and their metadata for your organization's data.
Parameters
array $conditions: Associative array of filters to apply to the returned objects. Filters are applied after the list is returned from Salesforce.
bool $reset: Whether to reset the cache and retrieve a fresh version from Salesforce.
Return value
array Available objects and metadata.
1 method overrides RestClientInterface::objects()
- RestClient::objects in src/
Rest/ RestClient.php - Available objects and their metadata for your organization's data.
File
- src/
Rest/ RestClientInterface.php, line 154
Class
- RestClientInterface
- Objects, properties, and methods to communicate with the Salesforce REST API.
Namespace
Drupal\salesforce\RestCode
public function objects(array $conditions = [
'updateable' => TRUE,
], $reset = FALSE);