Файл: Main Website Files/assets/libraries/stripe-php-2.2.0/lib/TransferReversal.php
Строк: 42
<?php
namespace Stripe;
class TransferReversal extends ApiResource
{
/**
* @return string The API URL for this Stripe transfer reversal.
*/
public function instanceUrl()
{
$id = $this['id'];
$transfer = $this['transfer'];
if (!$id) {
throw new ErrorInvalidRequest(
"Could not determine which URL to request: " .
"class instance has invalid ID: $id",
null
);
}
$id = UtilUtil::utf8($id);
$transfer = UtilUtil::utf8($transfer);
$base = Transfer::classUrl();
$transferExtn = urlencode($transfer);
$extn = urlencode($id);
return "$base/$transferExtn/reversals/$extn";
}
/**
* @param array|string|null $opts
*
* @return TransferReversal The saved reversal.
*/
public function save($opts = null)
{
return $this->_save($opts);
}
}