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