wallet tron transactions
This commit is contained in:
55
app/Bean/Sdk/Wallet/Tron/MetaBean.php
Normal file
55
app/Bean/Sdk/Wallet/Tron/MetaBean.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
namespace App\Bean\Sdk\Wallet\Tron;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class MetaBean extends BaseBean
|
||||
{
|
||||
protected $at;
|
||||
protected $fingerprint;
|
||||
protected MetaLinksBean $links;
|
||||
protected $page_size;
|
||||
|
||||
public function getAt()
|
||||
{
|
||||
return $this->at;
|
||||
}
|
||||
|
||||
public function setAt($at): void
|
||||
{
|
||||
$this->at = $at;
|
||||
}
|
||||
|
||||
public function getFingerprint()
|
||||
{
|
||||
return $this->fingerprint;
|
||||
}
|
||||
|
||||
public function setFingerprint($fingerprint): void
|
||||
{
|
||||
$this->fingerprint = $fingerprint;
|
||||
}
|
||||
|
||||
public function getLinks(): MetaLinksBean
|
||||
{
|
||||
return $this->links;
|
||||
}
|
||||
|
||||
public function setLinks(MetaLinksBean $links): void
|
||||
{
|
||||
$this->links = $links;
|
||||
}
|
||||
|
||||
public function getPageSize()
|
||||
{
|
||||
return $this->page_size;
|
||||
}
|
||||
|
||||
public function setPageSize($page_size): void
|
||||
{
|
||||
$this->page_size = $page_size;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user