| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /home/udaipurk/www/websites/rishhh/wp-content/plugins/woo-razorpay/razorpay-sdk/src/ |
| Current File : /home/udaipurk/www/websites/rishhh/wp-content/plugins/woo-razorpay/razorpay-sdk/src/Product.php |
<?php
namespace Razorpay\Api;
class Product extends Entity
{
public function requestProductConfiguration($attributes = array())
{
$url = 'accounts/'.$this->account_id .'/'.$this->getEntityUrl();
return $this->request('POST', $url, $attributes, 'v2');
}
public function fetch($id)
{
$entityUrl = 'accounts/'.$this->account_id .'/'.$this->getEntityUrl().'/'.$id;
return $this->request('GET', $entityUrl, null, 'v2');
}
public function edit($id, $attributes = array())
{
$entityUrl = 'accounts/'.$this->account_id .'/'.$this->getEntityUrl().'/'.$id;
return $this->request('PATCH', $entityUrl, $attributes, 'v2');
}
public function fetchTnc($product_name)
{
$entityUrl = $this->getEntityUrl().'/'.$product_name.'/tnc';
return $this->request('GET', $entityUrl,null , 'v2');
}
}