The Database.getDeleted method returns the deleted record information as a Database.GetDeletedResult object.
The following are methods for GetDeletedResult. All are instance methods.
public List<Database.DeletedRecord> getDeletedRecords()
Type: List<Database.DeletedRecord>
public Date getEarliestDateAvailable()
Type: Date
public Date getLatestDateCovered()
Type: Date
If there is a value, it is less than or equal to the endDate argument of Database.getDeleted. A value here indicates that, for safety, you should use this value for the startDate of your next call to capture the changes that started after this date but didn’t complete before endDate and were, therefore, not returned in the previous call.