shell bypass 403
<?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;
}