Class PciSigningResponse
- java.lang.Object
-
- com.adyen.model.legalentitymanagement.PciSigningResponse
-
public class PciSigningResponse extends Object
PciSigningResponse
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PCI_QUESTIONNAIRE_IDSstatic StringJSON_PROPERTY_SIGNED_BY
-
Constructor Summary
Constructors Constructor Description PciSigningResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PciSigningResponseaddPciQuestionnaireIdsItem(String pciQuestionnaireIdsItem)booleanequals(Object o)Return true if this PciSigningResponse object is equal to o.static PciSigningResponsefromJson(String jsonString)Create an instance of PciSigningResponse given an JSON stringList<String>getPciQuestionnaireIds()The unique identifiers of the signed PCI documents.StringgetSignedBy()The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signed the PCI questionnaire.inthashCode()PciSigningResponsepciQuestionnaireIds(List<String> pciQuestionnaireIds)voidsetPciQuestionnaireIds(List<String> pciQuestionnaireIds)The unique identifiers of the signed PCI documents.voidsetSignedBy(String signedBy)The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signed the PCI questionnaire.PciSigningResponsesignedBy(String signedBy)StringtoJson()Convert an instance of PciSigningResponse to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_PCI_QUESTIONNAIRE_IDS
public static final String JSON_PROPERTY_PCI_QUESTIONNAIRE_IDS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SIGNED_BY
public static final String JSON_PROPERTY_SIGNED_BY
- See Also:
- Constant Field Values
-
-
Method Detail
-
pciQuestionnaireIds
public PciSigningResponse pciQuestionnaireIds(List<String> pciQuestionnaireIds)
-
addPciQuestionnaireIdsItem
public PciSigningResponse addPciQuestionnaireIdsItem(String pciQuestionnaireIdsItem)
-
getPciQuestionnaireIds
public List<String> getPciQuestionnaireIds()
The unique identifiers of the signed PCI documents.- Returns:
- pciQuestionnaireIds
-
setPciQuestionnaireIds
public void setPciQuestionnaireIds(List<String> pciQuestionnaireIds)
The unique identifiers of the signed PCI documents.- Parameters:
pciQuestionnaireIds-
-
signedBy
public PciSigningResponse signedBy(String signedBy)
-
getSignedBy
public String getSignedBy()
The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signed the PCI questionnaire.- Returns:
- signedBy
-
setSignedBy
public void setSignedBy(String signedBy)
The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signed the PCI questionnaire.- Parameters:
signedBy-
-
equals
public boolean equals(Object o)
Return true if this PciSigningResponse object is equal to o.
-
fromJson
public static PciSigningResponse fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of PciSigningResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of PciSigningResponse
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to PciSigningResponse
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of PciSigningResponse to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-