public function SalesforceMapping::getLastDeleteTime in Salesforce Suite 5.0.x
Same name and namespace in other branches
- 8.4 modules/salesforce_mapping/src/Entity/SalesforceMapping.php \Drupal\salesforce_mapping\Entity\SalesforceMapping::getLastDeleteTime()
- 8.3 modules/salesforce_mapping/src/Entity/SalesforceMapping.php \Drupal\salesforce_mapping\Entity\SalesforceMapping::getLastDeleteTime()
Return the timestamp for the date of most recent delete processing.
Return value
int|null Integer timestamp of last delete, or NULL if delete has not been run.
Overrides SalesforceMappingInterface::getLastDeleteTime
File
- modules/
salesforce_mapping/ src/ Entity/ SalesforceMapping.php, line 567
Class
- SalesforceMapping
- Defines a Salesforce Mapping configuration entity class.
Namespace
Drupal\salesforce_mapping\EntityCode
public function getLastDeleteTime() {
return $this->pull_info['last_delete_timestamp'] ?? NULL;
}