Class KYCCheckResult
- java.lang.Object
-
- com.adyen.model.marketpaywebhooks.KYCCheckResult
-
public class KYCCheckResult extends Object
KYCCheckResult
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CHECKS
-
Constructor Summary
Constructors Constructor Description KYCCheckResult()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description KYCCheckResultaddChecksItem(KYCCheckStatusData checksItem)KYCCheckResultchecks(List<KYCCheckStatusData> checks)booleanequals(Object o)Return true if this KYCCheckResult object is equal to o.static KYCCheckResultfromJson(String jsonString)Create an instance of KYCCheckResult given an JSON stringList<KYCCheckStatusData>getChecks()A list of the checks and their statuses.inthashCode()voidsetChecks(List<KYCCheckStatusData> checks)StringtoJson()Convert an instance of KYCCheckResult to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CHECKS
public static final String JSON_PROPERTY_CHECKS
- See Also:
- Constant Field Values
-
-
Method Detail
-
checks
public KYCCheckResult checks(List<KYCCheckStatusData> checks)
-
addChecksItem
public KYCCheckResult addChecksItem(KYCCheckStatusData checksItem)
-
getChecks
public List<KYCCheckStatusData> getChecks()
A list of the checks and their statuses.- Returns:
- checks
-
setChecks
public void setChecks(List<KYCCheckStatusData> checks)
-
equals
public boolean equals(Object o)
Return true if this KYCCheckResult object is equal to o.
-
fromJson
public static KYCCheckResult fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of KYCCheckResult given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of KYCCheckResult
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to KYCCheckResult
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of KYCCheckResult to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-