/home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api
Edit: /home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Transaction.php (1402B)
transactions = $transactions;
return $this;
}
/**
* Additional transactions for complex payment scenarios.
*
* @return self[]
*/
public function getTransactions()
{
return $this->transactions;
}
/**
* Identifier to the purchase unit corresponding to this sale transaction
*
* @param string $purchase_unit_reference_id
* @deprecated Use #setReferenceId instead
* @return $this
*/
public function setPurchaseUnitReferenceId($purchase_unit_reference_id)
{
$this->purchase_unit_reference_id = $purchase_unit_reference_id;
return $this;
}
/**
* Identifier to the purchase unit corresponding to this sale transaction
*
* @deprecated Use #getReferenceId instead
* @return string
*/
public function getPurchaseUnitReferenceId()
{
return $this->purchase_unit_reference_id;
}
}