3333
3434
3535public class ZoneForListZonesOutput {
36+ @ SerializedName ("AutoRenew" )
37+ private String autoRenew = null ;
38+
3639 @ SerializedName ("CacheStage" )
3740 private Integer cacheStage = null ;
3841
@@ -81,6 +84,24 @@ public class ZoneForListZonesOutput {
8184 @ SerializedName ("ZoneName" )
8285 private String zoneName = null ;
8386
87+ public ZoneForListZonesOutput autoRenew (String autoRenew ) {
88+ this .autoRenew = autoRenew ;
89+ return this ;
90+ }
91+
92+ /**
93+ * Get autoRenew
94+ * @return autoRenew
95+ **/
96+ @ Schema (description = "" )
97+ public String getAutoRenew () {
98+ return autoRenew ;
99+ }
100+
101+ public void setAutoRenew (String autoRenew ) {
102+ this .autoRenew = autoRenew ;
103+ }
104+
84105 public ZoneForListZonesOutput cacheStage (Integer cacheStage ) {
85106 this .cacheStage = cacheStage ;
86107 return this ;
@@ -388,7 +409,8 @@ public boolean equals(java.lang.Object o) {
388409 return false ;
389410 }
390411 ZoneForListZonesOutput zoneForListZonesOutput = (ZoneForListZonesOutput ) o ;
391- return Objects .equals (this .cacheStage , zoneForListZonesOutput .cacheStage ) &&
412+ return Objects .equals (this .autoRenew , zoneForListZonesOutput .autoRenew ) &&
413+ Objects .equals (this .cacheStage , zoneForListZonesOutput .cacheStage ) &&
392414 Objects .equals (this .configurationCode , zoneForListZonesOutput .configurationCode ) &&
393415 Objects .equals (this .createdAt , zoneForListZonesOutput .createdAt ) &&
394416 Objects .equals (this .dnsSecurity , zoneForListZonesOutput .dnsSecurity ) &&
@@ -408,7 +430,7 @@ public boolean equals(java.lang.Object o) {
408430
409431 @ Override
410432 public int hashCode () {
411- return Objects .hash (cacheStage , configurationCode , createdAt , dnsSecurity , expiredTime , instanceID , isSubDomain , lastOperator , projectName , recordCount , remark , tags , tradeCode , updatedAt , ZID , zoneName );
433+ return Objects .hash (autoRenew , cacheStage , configurationCode , createdAt , dnsSecurity , expiredTime , instanceID , isSubDomain , lastOperator , projectName , recordCount , remark , tags , tradeCode , updatedAt , ZID , zoneName );
412434 }
413435
414436
@@ -417,6 +439,7 @@ public String toString() {
417439 StringBuilder sb = new StringBuilder ();
418440 sb .append ("class ZoneForListZonesOutput {\n " );
419441
442+ sb .append (" autoRenew: " ).append (toIndentedString (autoRenew )).append ("\n " );
420443 sb .append (" cacheStage: " ).append (toIndentedString (cacheStage )).append ("\n " );
421444 sb .append (" configurationCode: " ).append (toIndentedString (configurationCode )).append ("\n " );
422445 sb .append (" createdAt: " ).append (toIndentedString (createdAt )).append ("\n " );
0 commit comments