Class PciSigningRequest
- java.lang.Object
-
- com.adyen.model.legalentitymanagement.PciSigningRequest
-
public class PciSigningRequest extends Object
PciSigningRequest
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PCI_TEMPLATE_REFERENCESstatic StringJSON_PROPERTY_SIGNED_BY
-
Constructor Summary
Constructors Constructor Description PciSigningRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PciSigningRequestaddPciTemplateReferencesItem(String pciTemplateReferencesItem)booleanequals(Object o)Return true if this PciSigningRequest object is equal to o.static PciSigningRequestfromJson(String jsonString)Create an instance of PciSigningRequest given an JSON stringList<String>getPciTemplateReferences()The array of Adyen-generated unique identifiers for the questionnaires.StringgetSignedBy()The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signs the PCI questionnaire.inthashCode()PciSigningRequestpciTemplateReferences(List<String> pciTemplateReferences)voidsetPciTemplateReferences(List<String> pciTemplateReferences)The array of Adyen-generated unique identifiers for the questionnaires.voidsetSignedBy(String signedBy)The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signs the PCI questionnaire.PciSigningRequestsignedBy(String signedBy)StringtoJson()Convert an instance of PciSigningRequest to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_PCI_TEMPLATE_REFERENCES
public static final String JSON_PROPERTY_PCI_TEMPLATE_REFERENCES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SIGNED_BY
public static final String JSON_PROPERTY_SIGNED_BY
- See Also:
- Constant Field Values
-
-
Method Detail
-
pciTemplateReferences
public PciSigningRequest pciTemplateReferences(List<String> pciTemplateReferences)
-
addPciTemplateReferencesItem
public PciSigningRequest addPciTemplateReferencesItem(String pciTemplateReferencesItem)
-
getPciTemplateReferences
public List<String> getPciTemplateReferences()
The array of Adyen-generated unique identifiers for the questionnaires.- Returns:
- pciTemplateReferences
-
setPciTemplateReferences
public void setPciTemplateReferences(List<String> pciTemplateReferences)
The array of Adyen-generated unique identifiers for the questionnaires.- Parameters:
pciTemplateReferences-
-
signedBy
public PciSigningRequest 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 signs 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 signs the PCI questionnaire.- Parameters:
signedBy-
-
equals
public boolean equals(Object o)
Return true if this PciSigningRequest object is equal to o.
-
fromJson
public static PciSigningRequest fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of PciSigningRequest given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of PciSigningRequest
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to PciSigningRequest
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of PciSigningRequest to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-