wallet tron transactions

This commit is contained in:
cano
2024-03-25 06:15:36 +08:00
parent 4b8f205e86
commit 489090382f
83 changed files with 5424 additions and 1343 deletions

View File

@ -0,0 +1,43 @@
<?php
namespace App\Bean\Sdk\Wallet\Tron;
use App\Bean\Model\Base\BaseBean;
class ResponseBean extends BaseBean
{
protected $data;
protected bool $success;
protected MetaBean $meta;
public function getData()
{
return $this->data;
}
public function setData($data): void
{
$this->data = $data;
}
public function getSuccess(): bool
{
return $this->success;
}
public function setSuccess($success): void
{
$this->success = $success;
}
public function getMeta(): MetaBean
{
return $this->meta;
}
public function setMeta($meta): void
{
$this->meta = $meta;
}
}