/home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src
NameSizeModeActions
Errors/-0755rm
Addon.php5560644editdlrm
Api.php16480644editdlrm
ArrayableInterface.php1770644editdlrm
Card.php1820644editdlrm
Collection.php3080644editdlrm
Customer.php7210644editdlrm
Entity.php57060644editdlrm
FundAccount.php5220644editdlrm
Invoice.php23710644editdlrm
Item.php6540644editdlrm
Order.php9160644editdlrm
Payment.php50900644editdlrm
PaymentLink.php17830644editdlrm
PaymentPage.php5820644editdlrm
Plan.php3410644editdlrm
QrCode.php15010644editdlrm
Refund.php7520644editdlrm
Request.php60560644editdlrm
Resource.php11580644editdlrm
Settlement.php20030644editdlrm
Subscription.php22460644editdlrm
Token.php6770644editdlrm
Transfer.php14420644editdlrm
Utility.php26940644editdlrm
VirtualAccount.php13630644editdlrm
Webhook.php7270644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src/Subscription.php (2246B)
getEntityUrl() . $this->id . '/cancel'; return $this->request('POST', $relativeUrl, $attributes); } public function createAddon($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/addons'; return $this->request('POST', $relativeUrl, $attributes); } /** * Create a Registration Link * @param array $attributes * @return array */ public function createSubscriptionRegistration($attributes = array()) { $relativeUrl = 'subscription_registration/auth_links'; return $this->request('POST', $relativeUrl, $attributes); } public function update($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id; return $this->request('PATCH', $relativeUrl, $attributes); } public function pendingUpdate() { $relativeUrl = $this->getEntityUrl() . $this->id . '/retrieve_scheduled_changes'; return $this->request('GET', $relativeUrl, null); } public function cancelScheduledChanges() { $relativeUrl = $this->getEntityUrl() . $this->id . '/cancel_scheduled_changes'; return $this->request('POST', $relativeUrl, null); } public function pause($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id.'/pause'; return $this->request('POST', $relativeUrl, $attributes); } public function resume($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id.'/resume'; return $this->request('POST', $relativeUrl, $attributes); } public function deleteOffer($offerId) { $relativeUrl = $this->getEntityUrl() . $this->id.'/'.$offerId; return $this->request('DELETE', $relativeUrl); } }