You are here

function GLExchange::sendDownloadConfirmation in GlobalLink Connect for Drupal 7.7

* Sends confirmation that the target resources was downloaded successfully * by the customer. * *

Parameters

* $ticket: * Downloaded target ticket

File

gl_ws/glc/GLExchange.php, line 846

Class

GLExchange

Code

function sendDownloadConfirmation($ticket) {
  $sendDownloadConfirmationRequest = new sendDownloadConfirmation();
  $sendDownloadConfirmationRequest->targetId = $ticket;
  return $this->targetService
    ->sendDownloadConfirmation($sendDownloadConfirmationRequest)->return;
}