Skip to content

Commit 767b85d

Browse files
authored
Update client code for 631aba7c89e34f532a7bdee84df32be3c64da506 (#36)
1 parent 12cbdd9 commit 767b85d

File tree

1 file changed

+93
-1
lines changed

1 file changed

+93
-1
lines changed

src/main/java/io/gopluslabs/client/model/ResponseWrapperAddressContractResult.java

Lines changed: 93 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,18 @@ public class ResponseWrapperAddressContractResult {
3737
@SerializedName("number_of_malicious_contracts_created")
3838
private String numberOfMaliciousContractsCreated = null;
3939

40+
@SerializedName("gas_abuse")
41+
private String gasAbuse = null;
42+
4043
@SerializedName("financial_crime")
4144
private String financialCrime = null;
4245

4346
@SerializedName("darkweb_transactions")
4447
private String darkwebTransactions = null;
4548

49+
@SerializedName("reinit")
50+
private String reinit = null;
51+
4652
@SerializedName("phishing_activities")
4753
private String phishingActivities = null;
4854

@@ -58,6 +64,9 @@ public class ResponseWrapperAddressContractResult {
5864
@SerializedName("data_source")
5965
private String dataSource = null;
6066

67+
@SerializedName("fake_standard_interface")
68+
private String fakeStandardInterface = null;
69+
6170
@SerializedName("stealing_attack")
6271
private String stealingAttack = null;
6372

@@ -73,6 +82,9 @@ public class ResponseWrapperAddressContractResult {
7382
@SerializedName("mixer")
7483
private String mixer = null;
7584

85+
@SerializedName("fake_token")
86+
private String fakeToken = null;
87+
7688
@SerializedName("honeypot_related_address")
7789
private String honeypotRelatedAddress = null;
7890

@@ -130,6 +142,24 @@ public void setNumberOfMaliciousContractsCreated(String numberOfMaliciousContrac
130142
this.numberOfMaliciousContractsCreated = numberOfMaliciousContractsCreated;
131143
}
132144

145+
public ResponseWrapperAddressContractResult gasAbuse(String gasAbuse) {
146+
this.gasAbuse = gasAbuse;
147+
return this;
148+
}
149+
150+
/**
151+
* It describes whether this address is cheating other user's gas fee to mint other assets.(Notice:Any interaction with such addresses may result in loss of property.)
152+
* @return gasAbuse
153+
**/
154+
@Schema(description = "It describes whether this address is cheating other user's gas fee to mint other assets.(Notice:Any interaction with such addresses may result in loss of property.)")
155+
public String getGasAbuse() {
156+
return gasAbuse;
157+
}
158+
159+
public void setGasAbuse(String gasAbuse) {
160+
this.gasAbuse = gasAbuse;
161+
}
162+
133163
public ResponseWrapperAddressContractResult financialCrime(String financialCrime) {
134164
this.financialCrime = financialCrime;
135165
return this;
@@ -166,6 +196,24 @@ public void setDarkwebTransactions(String darkwebTransactions) {
166196
this.darkwebTransactions = darkwebTransactions;
167197
}
168198

199+
public ResponseWrapperAddressContractResult reinit(String reinit) {
200+
this.reinit = reinit;
201+
return this;
202+
}
203+
204+
/**
205+
* It describes whether this address/contract has been deployed more than onces, and can be deployed again.(Notice:If a contract can be reinited, the developer can change the contract code whenever he wants.)
206+
* @return reinit
207+
**/
208+
@Schema(description = "It describes whether this address/contract has been deployed more than onces, and can be deployed again.(Notice:If a contract can be reinited, the developer can change the contract code whenever he wants.)")
209+
public String getReinit() {
210+
return reinit;
211+
}
212+
213+
public void setReinit(String reinit) {
214+
this.reinit = reinit;
215+
}
216+
169217
public ResponseWrapperAddressContractResult phishingActivities(String phishingActivities) {
170218
this.phishingActivities = phishingActivities;
171219
return this;
@@ -256,6 +304,24 @@ public void setDataSource(String dataSource) {
256304
this.dataSource = dataSource;
257305
}
258306

307+
public ResponseWrapperAddressContractResult fakeStandardInterface(String fakeStandardInterface) {
308+
this.fakeStandardInterface = fakeStandardInterface;
309+
return this;
310+
}
311+
312+
/**
313+
* It describes whether this contract contains standard interfaces that do not conform the requirements of the standard protocol.(Notice:Fake Standard Interface is mostly seen in scam assets.)
314+
* @return fakeStandardInterface
315+
**/
316+
@Schema(description = "It describes whether this contract contains standard interfaces that do not conform the requirements of the standard protocol.(Notice:Fake Standard Interface is mostly seen in scam assets.)")
317+
public String getFakeStandardInterface() {
318+
return fakeStandardInterface;
319+
}
320+
321+
public void setFakeStandardInterface(String fakeStandardInterface) {
322+
this.fakeStandardInterface = fakeStandardInterface;
323+
}
324+
259325
public ResponseWrapperAddressContractResult stealingAttack(String stealingAttack) {
260326
this.stealingAttack = stealingAttack;
261327
return this;
@@ -346,6 +412,24 @@ public void setMixer(String mixer) {
346412
this.mixer = mixer;
347413
}
348414

415+
public ResponseWrapperAddressContractResult fakeToken(String fakeToken) {
416+
this.fakeToken = fakeToken;
417+
return this;
418+
}
419+
420+
/**
421+
* It indicates whether the token is a counterfeit of a mainstream asset.
422+
* @return fakeToken
423+
**/
424+
@Schema(description = "It indicates whether the token is a counterfeit of a mainstream asset.")
425+
public String getFakeToken() {
426+
return fakeToken;
427+
}
428+
429+
public void setFakeToken(String fakeToken) {
430+
this.fakeToken = fakeToken;
431+
}
432+
349433
public ResponseWrapperAddressContractResult honeypotRelatedAddress(String honeypotRelatedAddress) {
350434
this.honeypotRelatedAddress = honeypotRelatedAddress;
351435
return this;
@@ -377,24 +461,28 @@ public boolean equals(java.lang.Object o) {
377461
return Objects.equals(this.cybercrime, responseWrapperAddressContractResult.cybercrime) &&
378462
Objects.equals(this.moneyLaundering, responseWrapperAddressContractResult.moneyLaundering) &&
379463
Objects.equals(this.numberOfMaliciousContractsCreated, responseWrapperAddressContractResult.numberOfMaliciousContractsCreated) &&
464+
Objects.equals(this.gasAbuse, responseWrapperAddressContractResult.gasAbuse) &&
380465
Objects.equals(this.financialCrime, responseWrapperAddressContractResult.financialCrime) &&
381466
Objects.equals(this.darkwebTransactions, responseWrapperAddressContractResult.darkwebTransactions) &&
467+
Objects.equals(this.reinit, responseWrapperAddressContractResult.reinit) &&
382468
Objects.equals(this.phishingActivities, responseWrapperAddressContractResult.phishingActivities) &&
383469
Objects.equals(this.contractAddress, responseWrapperAddressContractResult.contractAddress) &&
384470
Objects.equals(this.fakeKyc, responseWrapperAddressContractResult.fakeKyc) &&
385471
Objects.equals(this.blacklistDoubt, responseWrapperAddressContractResult.blacklistDoubt) &&
386472
Objects.equals(this.dataSource, responseWrapperAddressContractResult.dataSource) &&
473+
Objects.equals(this.fakeStandardInterface, responseWrapperAddressContractResult.fakeStandardInterface) &&
387474
Objects.equals(this.stealingAttack, responseWrapperAddressContractResult.stealingAttack) &&
388475
Objects.equals(this.blackmailActivities, responseWrapperAddressContractResult.blackmailActivities) &&
389476
Objects.equals(this.sanctioned, responseWrapperAddressContractResult.sanctioned) &&
390477
Objects.equals(this.maliciousMiningActivities, responseWrapperAddressContractResult.maliciousMiningActivities) &&
391478
Objects.equals(this.mixer, responseWrapperAddressContractResult.mixer) &&
479+
Objects.equals(this.fakeToken, responseWrapperAddressContractResult.fakeToken) &&
392480
Objects.equals(this.honeypotRelatedAddress, responseWrapperAddressContractResult.honeypotRelatedAddress);
393481
}
394482

395483
@Override
396484
public int hashCode() {
397-
return Objects.hash(cybercrime, moneyLaundering, numberOfMaliciousContractsCreated, financialCrime, darkwebTransactions, phishingActivities, contractAddress, fakeKyc, blacklistDoubt, dataSource, stealingAttack, blackmailActivities, sanctioned, maliciousMiningActivities, mixer, honeypotRelatedAddress);
485+
return Objects.hash(cybercrime, moneyLaundering, numberOfMaliciousContractsCreated, gasAbuse, financialCrime, darkwebTransactions, reinit, phishingActivities, contractAddress, fakeKyc, blacklistDoubt, dataSource, fakeStandardInterface, stealingAttack, blackmailActivities, sanctioned, maliciousMiningActivities, mixer, fakeToken, honeypotRelatedAddress);
398486
}
399487

400488

@@ -406,18 +494,22 @@ public String toString() {
406494
sb.append(" cybercrime: ").append(toIndentedString(cybercrime)).append("\n");
407495
sb.append(" moneyLaundering: ").append(toIndentedString(moneyLaundering)).append("\n");
408496
sb.append(" numberOfMaliciousContractsCreated: ").append(toIndentedString(numberOfMaliciousContractsCreated)).append("\n");
497+
sb.append(" gasAbuse: ").append(toIndentedString(gasAbuse)).append("\n");
409498
sb.append(" financialCrime: ").append(toIndentedString(financialCrime)).append("\n");
410499
sb.append(" darkwebTransactions: ").append(toIndentedString(darkwebTransactions)).append("\n");
500+
sb.append(" reinit: ").append(toIndentedString(reinit)).append("\n");
411501
sb.append(" phishingActivities: ").append(toIndentedString(phishingActivities)).append("\n");
412502
sb.append(" contractAddress: ").append(toIndentedString(contractAddress)).append("\n");
413503
sb.append(" fakeKyc: ").append(toIndentedString(fakeKyc)).append("\n");
414504
sb.append(" blacklistDoubt: ").append(toIndentedString(blacklistDoubt)).append("\n");
415505
sb.append(" dataSource: ").append(toIndentedString(dataSource)).append("\n");
506+
sb.append(" fakeStandardInterface: ").append(toIndentedString(fakeStandardInterface)).append("\n");
416507
sb.append(" stealingAttack: ").append(toIndentedString(stealingAttack)).append("\n");
417508
sb.append(" blackmailActivities: ").append(toIndentedString(blackmailActivities)).append("\n");
418509
sb.append(" sanctioned: ").append(toIndentedString(sanctioned)).append("\n");
419510
sb.append(" maliciousMiningActivities: ").append(toIndentedString(maliciousMiningActivities)).append("\n");
420511
sb.append(" mixer: ").append(toIndentedString(mixer)).append("\n");
512+
sb.append(" fakeToken: ").append(toIndentedString(fakeToken)).append("\n");
421513
sb.append(" honeypotRelatedAddress: ").append(toIndentedString(honeypotRelatedAddress)).append("\n");
422514
sb.append("}");
423515
return sb.toString();

0 commit comments

Comments
 (0)