webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
mercadopago
/
dx-php
/
src
/
MercadoPago
/
Entities
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AdvancedPayments
--
ren
Shared
--
ren
AuthorizedPayment.php
2.469KB
edt
ren
Card.php
2.331KB
edt
ren
CardToken.php
2.244KB
edt
ren
Chargeback.php
2.037KB
edt
ren
Customer.php
2.55KB
edt
ren
DiscountCampaign.php
1.17KB
edt
ren
InstoreOrder.php
0.841KB
edt
ren
Invoice.php
1.638KB
edt
ren
MerchantOrder.php
2.574KB
edt
ren
OAuth.php
2.601KB
edt
ren
POS.php
1.787KB
edt
ren
Plan.php
1.378KB
edt
ren
Preapproval.php
2.15KB
edt
ren
Preference.php
4.157KB
edt
ren
Refund.php
0.966KB
edt
ren
Shipments.php
1.295KB
edt
ren
Subscription.php
1.772KB
edt
ren
<?php namespace MercadoPago; use MercadoPago\Annotation\RestMethod; use MercadoPago\Annotation\RequestParam; use MercadoPago\Annotation\Attribute; /** * POS class * @link https://www.mercadopago.com/developers/en/reference/pos/_pos/post/ Click here for more infos * * @RestMethod(resource="/pos/:id", method="read") * @RestMethod(resource="/pos", method="create") * @RestMethod(resource="/pos/:id", method="update") * @RestMethod(resource="/pos/:id", method="delete") * @RestMethod(resource="/pos", method="search") */ class POS extends Entity { /** * id * @Attribute() * @var string */ protected $id; /** * name * @Attribute() * @var string */ protected $name; /** * fixed_amount * @Attribute() * @var float */ protected $fixed_amount; /** * category * @Attribute() * @var int */ protected $category; /** * store_id * @Attribute() * @var string */ protected $store_id; /** * external_reference * @Attribute() * @var string */ protected $external_id; /** * qr * @Attribute() * @var object */ protected $qr; /** * status * @Attribute() * @var string */ protected $status; /** * date_created * @Attribute() * @var string */ protected $date_created; /** * date_last_updated * @Attribute() * @var string */ protected $date_last_updated; /** * uuid * @Attribute() * @var string */ protected $uuid; /** * compatible_id * @Attribute() * @var string */ protected $compatible_id; /** * user_id * @Attribute() * @var int */ protected $user_id; }