@@ 603-608 (lines=6) @@ | ||
600 | * @param array $ids Array of fields |
|
601 | * @return DeleteResult |
|
602 | */ |
|
603 | public function undelete($ids) { |
|
604 | $this->setHeaders("undelete"); |
|
605 | $arg = new stdClass(); |
|
606 | $arg->ids = $ids; |
|
607 | return $this->sforce->undelete($arg)->result; |
|
608 | } |
|
609 | ||
610 | /** |
|
611 | * Deletes one or more new individual objects to your organization's data. |
|
@@ 616-621 (lines=6) @@ | ||
613 | * @param array $ids Array of fields |
|
614 | * @return DeleteResult |
|
615 | */ |
|
616 | public function emptyRecycleBin($ids) { |
|
617 | $this->setHeaders(); |
|
618 | $arg = new stdClass(); |
|
619 | $arg->ids = $ids; |
|
620 | return $this->sforce->emptyRecycleBin($arg)->result; |
|
621 | } |
|
622 | ||
623 | /** |
|
624 | * Process Submit Request for Approval |