webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
razorpay
/
razorpay
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Errors
--
ren
Account.php
1.621KB
edt
ren
Addon.php
0.543KB
edt
ren
Api.php
1.648KB
edt
ren
ArrayableInterface.php
0.173KB
edt
ren
Card.php
0.377KB
edt
ren
Collection.php
0.301KB
edt
ren
Customer.php
1.469KB
edt
ren
Dispute.php
0.685KB
edt
ren
Document.php
0.298KB
edt
ren
Entity.php
5.922KB
edt
ren
FundAccount.php
0.51KB
edt
ren
Iin.php
0.309KB
edt
ren
Invoice.php
2.315KB
edt
ren
Item.php
0.639KB
edt
ren
Order.php
1.398KB
edt
ren
Payment.php
5.155KB
edt
ren
PaymentLink.php
1.741KB
edt
ren
PaymentPage.php
0.568KB
edt
ren
Plan.php
0.333KB
edt
ren
Product.php
0.89KB
edt
ren
QrCode.php
1.466KB
edt
ren
Refund.php
0.734KB
edt
ren
Request.php
6.019KB
edt
ren
Resource.php
1.131KB
edt
ren
Settlement.php
2.039KB
edt
ren
Stakeholder.php
1.399KB
edt
ren
Subscription.php
2.193KB
edt
ren
Token.php
1.474KB
edt
ren
Transfer.php
1.408KB
edt
ren
Utility.php
2.631KB
edt
ren
VirtualAccount.php
1.331KB
edt
ren
Webhook.php
1.743KB
edt
ren
<?php namespace Razorpay\Api; class VirtualAccount extends Entity { public function create($attributes = array()) { return parent::create($attributes); } public function fetch($id) { return parent::fetch($id); } public function all($options = array()) { return parent::all($options); } public function close() { $relativeUrl = $this->getEntityUrl() . $this->id . '/close'; return $this->request('POST', $relativeUrl); } public function payments($options = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/payments'; return $this->request('GET', $relativeUrl, $options); } public function addReceiver($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/receivers'; return $this->request('POST', $relativeUrl, $attributes); } public function addAllowedPayer($attributes = array()) { $relativeUrl = $this->getEntityUrl() . $this->id . '/allowed_payers'; return $this->request('POST', $relativeUrl, $attributes); } public function deleteAllowedPayer($allowedPlayerId) { $relativeUrl = $this->getEntityUrl() . $this->id . '/allowed_payers/'.$allowedPlayerId; return $this->request('DELETE', $relativeUrl); } }