Files
cycle_api/app/Bean/Sdk/Wallet/Tron/AccountTransactionTokenInfoBean.php
2024-03-25 06:15:36 +08:00

56 lines
904 B
PHP

<?php
namespace App\Bean\Sdk\Wallet\Tron;
use App\Bean\Model\Base\BaseBean;
class AccountTransactionTokenInfoBean extends BaseBean
{
protected $symbol;
protected $address;
protected $decimals;
protected $name;
public function getSymbol()
{
return $this->symbol;
}
public function setSymbol($symbol): void
{
$this->symbol = $symbol;
}
public function getAddress()
{
return $this->address;
}
public function setAddress($address): void
{
$this->address = $address;
}
public function getDecimals()
{
return $this->decimals;
}
public function setDecimals($decimals): void
{
$this->decimals = $decimals;
}
public function getName()
{
return $this->name;
}
public function setName($name): void
{
$this->name = $name;
}
}