Package io.moov.sdk.models.components
Class BankAccountVerification
- java.lang.Object
-
- io.moov.sdk.models.components.BankAccountVerification
-
public class BankAccountVerification extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBankAccountVerification.Builder
-
Constructor Summary
Constructors Constructor Description BankAccountVerification(BankAccountVerificationMethod verificationMethod, BankAccountVerificationStatus status)BankAccountVerification(BankAccountVerificationMethod verificationMethod, BankAccountVerificationStatus status, java.util.Optional<? extends BankAccountException> exceptionDetails)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BankAccountVerification.Builderbuilder()booleanequals(java.lang.Object o)java.util.Optional<BankAccountException>exceptionDetails()Reason for, and details related to, an `errored` or `verificationFailed` bank account status.inthashCode()BankAccountVerificationStatusstatus()java.lang.StringtoString()BankAccountVerificationMethodverificationMethod()BankAccountVerificationwithExceptionDetails(BankAccountException exceptionDetails)Reason for, and details related to, an `errored` or `verificationFailed` bank account status.BankAccountVerificationwithExceptionDetails(java.util.Optional<? extends BankAccountException> exceptionDetails)Reason for, and details related to, an `errored` or `verificationFailed` bank account status.BankAccountVerificationwithStatus(BankAccountVerificationStatus status)BankAccountVerificationwithVerificationMethod(BankAccountVerificationMethod verificationMethod)
-
-
-
Constructor Detail
-
BankAccountVerification
public BankAccountVerification(BankAccountVerificationMethod verificationMethod, BankAccountVerificationStatus status, java.util.Optional<? extends BankAccountException> exceptionDetails)
-
BankAccountVerification
public BankAccountVerification(BankAccountVerificationMethod verificationMethod, BankAccountVerificationStatus status)
-
-
Method Detail
-
verificationMethod
public BankAccountVerificationMethod verificationMethod()
-
status
public BankAccountVerificationStatus status()
-
exceptionDetails
public java.util.Optional<BankAccountException> exceptionDetails()
Reason for, and details related to, an `errored` or `verificationFailed` bank account status.
-
builder
public static BankAccountVerification.Builder builder()
-
withVerificationMethod
public BankAccountVerification withVerificationMethod(BankAccountVerificationMethod verificationMethod)
-
withStatus
public BankAccountVerification withStatus(BankAccountVerificationStatus status)
-
withExceptionDetails
public BankAccountVerification withExceptionDetails(BankAccountException exceptionDetails)
Reason for, and details related to, an `errored` or `verificationFailed` bank account status.
-
withExceptionDetails
public BankAccountVerification withExceptionDetails(java.util.Optional<? extends BankAccountException> exceptionDetails)
Reason for, and details related to, an `errored` or `verificationFailed` bank account status.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-