wallet tron transactions
This commit is contained in:
33
app/Bean/Sdk/Wallet/Tron/TransferTransactionBean.php
Normal file
33
app/Bean/Sdk/Wallet/Tron/TransferTransactionBean.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
namespace App\Bean\Sdk\Wallet\Tron;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class TransferTransactionBean extends BaseBean
|
||||
{
|
||||
protected $txID;
|
||||
protected $raw_data;
|
||||
|
||||
public function getTxID()
|
||||
{
|
||||
return $this->txID;
|
||||
}
|
||||
|
||||
public function setTxID($txID): void
|
||||
{
|
||||
$this->txID = $txID;
|
||||
}
|
||||
|
||||
public function getRawData()
|
||||
{
|
||||
return $this->raw_data;
|
||||
}
|
||||
|
||||
public function setRawData($raw_data): void
|
||||
{
|
||||
$this->raw_data = $raw_data;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user