From 8d2504842b876b6f4fa8fd0f55200c431ce8a558 Mon Sep 17 00:00:00 2001 From: GoPlus Bot <130978499+goplusbot@users.noreply.github.com> Date: Mon, 21 Aug 2023 10:07:08 +0800 Subject: [PATCH] Update client code for 3971e0cff1d8e9bd6bab55f7b2b6e436d37a92e9 (#31) --- .../ResponseWrapperTokenSecurityResult.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/lib/client/Model/ResponseWrapperTokenSecurityResult.php b/src/lib/client/Model/ResponseWrapperTokenSecurityResult.php index d8274ee..bba8a8e 100644 --- a/src/lib/client/Model/ResponseWrapperTokenSecurityResult.php +++ b/src/lib/client/Model/ResponseWrapperTokenSecurityResult.php @@ -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', @@ -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, @@ -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', @@ -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', @@ -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', @@ -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; @@ -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 *