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 stringMap<String,Object>getExplicitNulls()Returns a map of properties to be merged into the JSON payload as explicit null values.List<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()PciSigningRequestincludeNullValues(boolean includeNullValues)Configures whether null values are explicitly serialized in the JSON payload.booleanisIncludeNullValues()Returns whether null values are explicitly serialized in the JSON payload.PciSigningRequestpciTemplateReferences(List<String> pciTemplateReferences)The array of Adyen-generated unique identifiers for the questionnaires.voidsetIncludeNullValues(boolean includeNullValues)Sets whether null values should be explicitly serialized in the JSON payload.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)The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signs the PCI questionnaire.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)
The array of Adyen-generated unique identifiers for the questionnaires.- Parameters:
pciTemplateReferences- The array of Adyen-generated unique identifiers for the questionnaires.- Returns:
- the current
PciSigningRequestinstance, allowing for method chaining
-
addPciTemplateReferencesItem
public PciSigningRequest addPciTemplateReferencesItem(String pciTemplateReferencesItem)
-
getPciTemplateReferences
public List<String> getPciTemplateReferences()
The array of Adyen-generated unique identifiers for the questionnaires.- Returns:
- pciTemplateReferences The array of Adyen-generated unique identifiers for the questionnaires.
-
setPciTemplateReferences
public void setPciTemplateReferences(List<String> pciTemplateReferences)
The array of Adyen-generated unique identifiers for the questionnaires.- Parameters:
pciTemplateReferences- The array of Adyen-generated unique identifiers for the questionnaires.
-
signedBy
public PciSigningRequest signedBy(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- 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:
- the current
PciSigningRequestinstance, allowing for method chaining
-
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 The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signs the PCI questionnaire.
-
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- The [legal entity ID](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) of the individual who signs the PCI questionnaire.
-
includeNullValues
public PciSigningRequest includeNullValues(boolean includeNullValues)
Configures whether null values are explicitly serialized in the JSON payload. Default is false.
-
isIncludeNullValues
public boolean isIncludeNullValues()
Returns whether null values are explicitly serialized in the JSON payload.
-
setIncludeNullValues
public void setIncludeNullValues(boolean includeNullValues)
Sets whether null values should be explicitly serialized in the JSON payload. Default is false.
-
equals
public boolean equals(Object o)
Return true if this PciSigningRequest object is equal to o.
-
getExplicitNulls
public Map<String,Object> getExplicitNulls()
Returns a map of properties to be merged into the JSON payload as explicit null values.
-
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
-
-