wallet tron transactions
This commit is contained in:
43
app/Bean/Sdk/Wallet/Tron/EventResultBean.php
Normal file
43
app/Bean/Sdk/Wallet/Tron/EventResultBean.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
namespace App\Bean\Sdk\Wallet\Tron;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class EventResultBean extends BaseBean
|
||||
{
|
||||
protected $from;
|
||||
protected $to;
|
||||
protected $value;
|
||||
|
||||
public function getFrom()
|
||||
{
|
||||
return $this->from;
|
||||
}
|
||||
|
||||
public function setFrom($from): void
|
||||
{
|
||||
$this->from = $from;
|
||||
}
|
||||
|
||||
public function getTo()
|
||||
{
|
||||
return $this->to;
|
||||
}
|
||||
|
||||
public function setTo($to): void
|
||||
{
|
||||
$this->to = $to;
|
||||
}
|
||||
|
||||
public function getValue()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
public function setValue($value): void
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user