Class KYCLegalArrangementEntityCheckResult
- java.lang.Object
-
- com.adyen.model.marketpaywebhooks.KYCLegalArrangementEntityCheckResult
-
public class KYCLegalArrangementEntityCheckResult extends Object
KYCLegalArrangementEntityCheckResult
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CHECKSstatic StringJSON_PROPERTY_LEGAL_ARRANGEMENT_CODEstatic StringJSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE
-
Constructor Summary
Constructors Constructor Description KYCLegalArrangementEntityCheckResult()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description KYCLegalArrangementEntityCheckResultaddChecksItem(KYCCheckStatusData checksItem)KYCLegalArrangementEntityCheckResultchecks(List<KYCCheckStatusData> checks)booleanequals(Object o)Return true if this KYCLegalArrangementEntityCheckResult object is equal to o.static KYCLegalArrangementEntityCheckResultfromJson(String jsonString)Create an instance of KYCLegalArrangementEntityCheckResult 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 entity belongs.StringgetLegalArrangementEntityCode()The unique ID of the legal arrangement entity to which the check applies.inthashCode()KYCLegalArrangementEntityCheckResultlegalArrangementCode(String legalArrangementCode)KYCLegalArrangementEntityCheckResultlegalArrangementEntityCode(String legalArrangementEntityCode)voidsetChecks(List<KYCCheckStatusData> checks)voidsetLegalArrangementCode(String legalArrangementCode)voidsetLegalArrangementEntityCode(String legalArrangementEntityCode)StringtoJson()Convert an instance of KYCLegalArrangementEntityCheckResult 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
-
JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE
public static final String JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
checks
public KYCLegalArrangementEntityCheckResult checks(List<KYCCheckStatusData> checks)
-
addChecksItem
public KYCLegalArrangementEntityCheckResult 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 KYCLegalArrangementEntityCheckResult legalArrangementCode(String legalArrangementCode)
-
getLegalArrangementCode
public String getLegalArrangementCode()
The unique ID of the legal arrangement to which the entity belongs.- Returns:
- legalArrangementCode
-
setLegalArrangementCode
public void setLegalArrangementCode(String legalArrangementCode)
-
legalArrangementEntityCode
public KYCLegalArrangementEntityCheckResult legalArrangementEntityCode(String legalArrangementEntityCode)
-
getLegalArrangementEntityCode
public String getLegalArrangementEntityCode()
The unique ID of the legal arrangement entity to which the check applies.- Returns:
- legalArrangementEntityCode
-
setLegalArrangementEntityCode
public void setLegalArrangementEntityCode(String legalArrangementEntityCode)
-
equals
public boolean equals(Object o)
Return true if this KYCLegalArrangementEntityCheckResult object is equal to o.
-
fromJson
public static KYCLegalArrangementEntityCheckResult fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of KYCLegalArrangementEntityCheckResult given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of KYCLegalArrangementEntityCheckResult
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to KYCLegalArrangementEntityCheckResult
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of KYCLegalArrangementEntityCheckResult to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-