Class KYCLegalArrangementCheckResult
- java.lang.Object
-
- com.adyen.model.marketpaywebhooks.KYCLegalArrangementCheckResult
-
public class KYCLegalArrangementCheckResult extends Object
KYCLegalArrangementCheckResult
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CHECKSstatic StringJSON_PROPERTY_LEGAL_ARRANGEMENT_CODE
-
Constructor Summary
Constructors Constructor Description KYCLegalArrangementCheckResult()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description KYCLegalArrangementCheckResultaddChecksItem(KYCCheckStatusData checksItem)KYCLegalArrangementCheckResultchecks(List<KYCCheckStatusData> checks)booleanequals(Object o)Return true if this KYCLegalArrangementCheckResult object is equal to o.static KYCLegalArrangementCheckResultfromJson(String jsonString)Create an instance of KYCLegalArrangementCheckResult given an JSON stringList<KYCCheckStatusData>getChecks()A list of the checks and their statuses.StringgetLegalArrangementCode()The unique ID of the legal arrangement to which the check applies.inthashCode()KYCLegalArrangementCheckResultlegalArrangementCode(String legalArrangementCode)voidsetChecks(List<KYCCheckStatusData> checks)voidsetLegalArrangementCode(String legalArrangementCode)StringtoJson()Convert an instance of KYCLegalArrangementCheckResult to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CHECKS
public static final String JSON_PROPERTY_CHECKS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_LEGAL_ARRANGEMENT_CODE
public static final String JSON_PROPERTY_LEGAL_ARRANGEMENT_CODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
checks
public KYCLegalArrangementCheckResult checks(List<KYCCheckStatusData> checks)
-
addChecksItem
public KYCLegalArrangementCheckResult 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)
-
legalArrangementCode
public KYCLegalArrangementCheckResult legalArrangementCode(String legalArrangementCode)
-
getLegalArrangementCode
public String getLegalArrangementCode()
The unique ID of the legal arrangement to which the check applies.- Returns:
- legalArrangementCode
-
setLegalArrangementCode
public void setLegalArrangementCode(String legalArrangementCode)
-
equals
public boolean equals(Object o)
Return true if this KYCLegalArrangementCheckResult object is equal to o.
-
fromJson
public static KYCLegalArrangementCheckResult fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of KYCLegalArrangementCheckResult given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of KYCLegalArrangementCheckResult
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to KYCLegalArrangementCheckResult
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of KYCLegalArrangementCheckResult to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-