Skip to content

Commit

Permalink
Update client code for 3971e0cff1d8e9bd6bab55f7b2b6e436d37a92e9 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
goplusbot authored Aug 21, 2023
1 parent 0a154e5 commit 8d25048
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/lib/client/Model/ResponseWrapperTokenSecurityResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class ResponseWrapperTokenSecurityResult implements ModelInterface, ArrayAccess
'holder_count' => 'string',
'trust_list' => 'string',
'is_honeypot' => 'string',
'honeypot_with_same_creator' => 'string',
'holders' => '\Swagger\Client\Model\ResponseWrapperTokenSecurityLpHolders[]',
'dex' => '\Swagger\Client\Model\ResponseWrapperTokenSecurityDex[]',
'is_open_source' => 'string',
Expand Down Expand Up @@ -121,6 +122,7 @@ class ResponseWrapperTokenSecurityResult implements ModelInterface, ArrayAccess
'holder_count' => null,
'trust_list' => null,
'is_honeypot' => null,
'honeypot_with_same_creator' => null,
'holders' => null,
'dex' => null,
'is_open_source' => null,
Expand Down Expand Up @@ -192,6 +194,7 @@ public static function swaggerFormats()
'holder_count' => 'holder_count',
'trust_list' => 'trust_list',
'is_honeypot' => 'is_honeypot',
'honeypot_with_same_creator' => 'honeypot_with_same_creator',
'holders' => 'holders',
'dex' => 'dex',
'is_open_source' => 'is_open_source',
Expand Down Expand Up @@ -242,6 +245,7 @@ public static function swaggerFormats()
'holder_count' => 'setHolderCount',
'trust_list' => 'setTrustList',
'is_honeypot' => 'setIsHoneypot',
'honeypot_with_same_creator' => 'setHoneypotWithSameCreator',
'holders' => 'setHolders',
'dex' => 'setDex',
'is_open_source' => 'setIsOpenSource',
Expand Down Expand Up @@ -292,6 +296,7 @@ public static function swaggerFormats()
'holder_count' => 'getHolderCount',
'trust_list' => 'getTrustList',
'is_honeypot' => 'getIsHoneypot',
'honeypot_with_same_creator' => 'getHoneypotWithSameCreator',
'holders' => 'getHolders',
'dex' => 'getDex',
'is_open_source' => 'getIsOpenSource',
Expand Down Expand Up @@ -394,6 +399,7 @@ public function __construct(array $data = null)
$this->container['holder_count'] = isset($data['holder_count']) ? $data['holder_count'] : null;
$this->container['trust_list'] = isset($data['trust_list']) ? $data['trust_list'] : null;
$this->container['is_honeypot'] = isset($data['is_honeypot']) ? $data['is_honeypot'] : null;
$this->container['honeypot_with_same_creator'] = isset($data['honeypot_with_same_creator']) ? $data['honeypot_with_same_creator'] : null;
$this->container['holders'] = isset($data['holders']) ? $data['holders'] : null;
$this->container['dex'] = isset($data['dex']) ? $data['dex'] : null;
$this->container['is_open_source'] = isset($data['is_open_source']) ? $data['is_open_source'] : null;
Expand Down Expand Up @@ -784,6 +790,30 @@ public function setIsHoneypot($is_honeypot)
return $this;
}

/**
* Gets honeypot_with_same_creator
*
* @return string
*/
public function getHoneypotWithSameCreator()
{
return $this->container['honeypot_with_same_creator'];
}

/**
* Sets honeypot_with_same_creator
*
* @param string $honeypot_with_same_creator It describes the number of honeypot tokens created by this creator.
*
* @return $this
*/
public function setHoneypotWithSameCreator($honeypot_with_same_creator)
{
$this->container['honeypot_with_same_creator'] = $honeypot_with_same_creator;

return $this;
}

/**
* Gets holders
*
Expand Down

0 comments on commit 8d25048

Please sign in to comment.