wallet tron transactions
This commit is contained in:
55
app/Bean/Sdk/Wallet/Tron/AccountTransactionTokenInfoBean.php
Normal file
55
app/Bean/Sdk/Wallet/Tron/AccountTransactionTokenInfoBean.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user