34 lines
509 B
PHP
34 lines
509 B
PHP
<?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;
|
|
}
|
|
|
|
|
|
|
|
}
|