2121package com .adyen .model ;
2222
2323
24+ import java .io .IOException ;
25+ import java .util .Objects ;
2426import com .google .gson .TypeAdapter ;
2527import com .google .gson .annotations .JsonAdapter ;
2628import com .google .gson .annotations .SerializedName ;
2729import com .google .gson .stream .JsonReader ;
2830import com .google .gson .stream .JsonWriter ;
2931
30- import java .io .IOException ;
31- import java .util .Objects ;
32-
3332
3433/**
3534 * ThreeDS2RequestData
@@ -318,25 +317,38 @@ public boolean equals(java.lang.Object o) {
318317 return false ;
319318 }
320319 ThreeDS2RequestData threeDS2RequestData = (ThreeDS2RequestData ) o ;
321- return Objects .equals (this .authenticationOnly , threeDS2RequestData .authenticationOnly ) &&
322- Objects .equals (this .challengeIndicator , threeDS2RequestData .challengeIndicator ) &&
323- Objects .equals (this .deviceChannel , threeDS2RequestData .deviceChannel ) &&
324- Objects .equals (this .deviceRenderOptions , threeDS2RequestData .deviceRenderOptions ) &&
325- Objects .equals (this .notificationURL , threeDS2RequestData .notificationURL ) &&
326- Objects .equals (this .sdkAppID , threeDS2RequestData .sdkAppID ) &&
327- Objects .equals (this .sdkEncData , threeDS2RequestData .sdkEncData ) &&
328- Objects .equals (this .sdkEphemPubKey , threeDS2RequestData .sdkEphemPubKey ) &&
329- Objects .equals (this .sdkMaxTimeout , threeDS2RequestData .sdkMaxTimeout ) &&
330- Objects .equals (this .sdkReferenceNumber , threeDS2RequestData .sdkReferenceNumber ) &&
331- Objects .equals (this .sdkTransID , threeDS2RequestData .sdkTransID ) &&
332- Objects .equals (this .threeDSCompInd , threeDS2RequestData .threeDSCompInd ) &&
333- Objects .equals (this .threeDSRequestorURL , threeDS2RequestData .threeDSRequestorURL ) &&
334- Objects .equals (this .threeDSServerTransID , threeDS2RequestData .threeDSServerTransID );
320+ return Objects .equals (this .authenticationOnly , threeDS2RequestData .authenticationOnly )
321+ && Objects .equals (this .challengeIndicator , threeDS2RequestData .challengeIndicator )
322+ && Objects .equals (this .deviceChannel , threeDS2RequestData .deviceChannel )
323+ && Objects .equals (this .deviceRenderOptions , threeDS2RequestData .deviceRenderOptions )
324+ && Objects .equals (this .notificationURL , threeDS2RequestData .notificationURL )
325+ && Objects .equals (this .sdkAppID , threeDS2RequestData .sdkAppID )
326+ && Objects .equals (this .sdkEncData , threeDS2RequestData .sdkEncData )
327+ && Objects .equals (this .sdkEphemPubKey , threeDS2RequestData .sdkEphemPubKey )
328+ && Objects .equals (this .sdkMaxTimeout , threeDS2RequestData .sdkMaxTimeout )
329+ && Objects .equals (this .sdkReferenceNumber , threeDS2RequestData .sdkReferenceNumber )
330+ && Objects .equals (this .sdkTransID , threeDS2RequestData .sdkTransID )
331+ && Objects .equals (this .threeDSCompInd , threeDS2RequestData .threeDSCompInd )
332+ && Objects .equals (this .threeDSRequestorURL , threeDS2RequestData .threeDSRequestorURL )
333+ && Objects .equals (this .threeDSServerTransID , threeDS2RequestData .threeDSServerTransID );
335334 }
336335
337336 @ Override
338337 public int hashCode () {
339- return Objects .hash (authenticationOnly , challengeIndicator , deviceChannel , deviceRenderOptions , notificationURL , sdkAppID , sdkEncData , sdkEphemPubKey , sdkMaxTimeout , sdkReferenceNumber , sdkTransID , threeDSCompInd , threeDSRequestorURL , threeDSServerTransID );
338+ return Objects .hash (authenticationOnly ,
339+ challengeIndicator ,
340+ deviceChannel ,
341+ deviceRenderOptions ,
342+ notificationURL ,
343+ sdkAppID ,
344+ sdkEncData ,
345+ sdkEphemPubKey ,
346+ sdkMaxTimeout ,
347+ sdkReferenceNumber ,
348+ sdkTransID ,
349+ threeDSCompInd ,
350+ threeDSRequestorURL ,
351+ threeDSServerTransID );
340352 }
341353
342354 @ Override
@@ -363,8 +375,7 @@ public String toString() {
363375 }
364376
365377 /**
366- * Convert the given object to string with each line indented by 4 spaces
367- * (except the first line).
378+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
368379 */
369380 private String toIndentedString (java .lang .Object o ) {
370381 if (o == null ) {
0 commit comments