Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.145.32.238
<?php
namespace Razorpay\Api;
class Payment extends Entity
{
/**
* @param $id Payment id
*/
public function fetch($id)
{
return parent::fetch($id);
}
public function all($options = array())
{
return parent::all($options);
}
/**
* @param $id Payment id
*/
public function refund($attributes = array())
{
$refund = new Refund;
$attributes = array_merge($attributes, array('payment_id' => $this->id));
return $refund->create($attributes);
}
/**
* @param $id Payment id
*/
public function capture($attributes = array())
{
$relativeUrl = $this->getEntityUrl() . $this->id . '/capture';
return $this->request('POST', $relativeUrl, $attributes);
}
public function refunds()
{
$refund = new Refund;
$options = array('payment_id' => $this->id);
return $refund->all($options);
}
}
|