Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
api.meumercado.app
/
vendor
/
mercadopago
/
dx-php
/
src
/
MercadoPago
/
Entities
/
Shared
/
Editing: Tax.php
<?php /** * Tax class file */ namespace MercadoPago; use MercadoPago\Annotation\Attribute; /** * Tax class */ class Tax extends Entity { /** * type * @Attribute(type = "string") * @var string */ protected $type; /** * value * @Attribute(type = "float") * @var float */ protected $value; }
Save
Cancel