@@ -63,6 +63,12 @@ public class LivenessParams {
6363 @ javax .annotation .Nullable
6464 private Boolean checkBlackAndWhiteCopy ;
6565
66+ public static final String SERIALIZED_NAME_CHECK_DYNAPRINT = "checkDynaprint" ;
67+
68+ @ SerializedName (SERIALIZED_NAME_CHECK_DYNAPRINT )
69+ @ javax .annotation .Nullable
70+ private Boolean checkDynaprint ;
71+
6672 public LivenessParams () {}
6773
6874 public LivenessParams checkOVI (@ javax .annotation .Nullable Boolean checkOVI ) {
@@ -161,6 +167,25 @@ public void setCheckBlackAndWhiteCopy(@javax.annotation.Nullable Boolean checkBl
161167 this .checkBlackAndWhiteCopy = checkBlackAndWhiteCopy ;
162168 }
163169
170+ public LivenessParams checkDynaprint (@ javax .annotation .Nullable Boolean checkDynaprint ) {
171+ this .checkDynaprint = checkDynaprint ;
172+ return this ;
173+ }
174+
175+ /**
176+ * This parameter is used to enable Dynaprint check
177+ *
178+ * @return checkDynaprint
179+ */
180+ @ javax .annotation .Nullable
181+ public Boolean getCheckDynaprint () {
182+ return checkDynaprint ;
183+ }
184+
185+ public void setCheckDynaprint (@ javax .annotation .Nullable Boolean checkDynaprint ) {
186+ this .checkDynaprint = checkDynaprint ;
187+ }
188+
164189 @ Override
165190 public boolean equals (Object o ) {
166191 if (this == o ) {
@@ -174,12 +199,14 @@ public boolean equals(Object o) {
174199 && Objects .equals (this .checkMLI , livenessParams .checkMLI )
175200 && Objects .equals (this .checkHolo , livenessParams .checkHolo )
176201 && Objects .equals (this .checkED , livenessParams .checkED )
177- && Objects .equals (this .checkBlackAndWhiteCopy , livenessParams .checkBlackAndWhiteCopy );
202+ && Objects .equals (this .checkBlackAndWhiteCopy , livenessParams .checkBlackAndWhiteCopy )
203+ && Objects .equals (this .checkDynaprint , livenessParams .checkDynaprint );
178204 }
179205
180206 @ Override
181207 public int hashCode () {
182- return Objects .hash (checkOVI , checkMLI , checkHolo , checkED , checkBlackAndWhiteCopy );
208+ return Objects .hash (
209+ checkOVI , checkMLI , checkHolo , checkED , checkBlackAndWhiteCopy , checkDynaprint );
183210 }
184211
185212 @ Override
@@ -193,6 +220,7 @@ public String toString() {
193220 sb .append (" checkBlackAndWhiteCopy: " )
194221 .append (toIndentedString (checkBlackAndWhiteCopy ))
195222 .append ("\n " );
223+ sb .append (" checkDynaprint: " ).append (toIndentedString (checkDynaprint )).append ("\n " );
196224 sb .append ("}" );
197225 return sb .toString ();
198226 }
@@ -218,6 +246,7 @@ private String toIndentedString(Object o) {
218246 openapiFields .add ("checkHolo" );
219247 openapiFields .add ("checkED" );
220248 openapiFields .add ("checkBlackAndWhiteCopy" );
249+ openapiFields .add ("checkDynaprint" );
221250
222251 // a set of required properties/fields (JSON key names)
223252 openapiRequiredFields = new HashSet <String >();
0 commit comments