Package com.adyen.model.recurring
Class ScheduleAccountUpdaterResult
- java.lang.Object
-
- com.adyen.model.recurring.ScheduleAccountUpdaterResult
-
public class ScheduleAccountUpdaterResult extends Object
ScheduleAccountUpdaterResult
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PSP_REFERENCEstatic StringJSON_PROPERTY_RESULT
-
Constructor Summary
Constructors Constructor Description ScheduleAccountUpdaterResult()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this ScheduleAccountUpdaterResult object is equal to o.static ScheduleAccountUpdaterResultfromJson(String jsonString)Create an instance of ScheduleAccountUpdaterResult given an JSON stringStringgetPspReference()Adyen's 16-character unique reference associated with the transaction.StringgetResult()The result of scheduling an Account Updater.inthashCode()ScheduleAccountUpdaterResultpspReference(String pspReference)ScheduleAccountUpdaterResultresult(String result)voidsetPspReference(String pspReference)Adyen's 16-character unique reference associated with the transaction.voidsetResult(String result)The result of scheduling an Account Updater.StringtoJson()Convert an instance of ScheduleAccountUpdaterResult to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_PSP_REFERENCE
public static final String JSON_PROPERTY_PSP_REFERENCE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_RESULT
public static final String JSON_PROPERTY_RESULT
- See Also:
- Constant Field Values
-
-
Method Detail
-
pspReference
public ScheduleAccountUpdaterResult pspReference(String pspReference)
-
getPspReference
public String getPspReference()
Adyen's 16-character unique reference associated with the transaction. This value is globally unique; quote it when communicating with us about this request.- Returns:
- pspReference
-
setPspReference
public void setPspReference(String pspReference)
Adyen's 16-character unique reference associated with the transaction. This value is globally unique; quote it when communicating with us about this request.- Parameters:
pspReference-
-
result
public ScheduleAccountUpdaterResult result(String result)
-
getResult
public String getResult()
The result of scheduling an Account Updater. If scheduling was successful, this field returns **Success**; otherwise it contains the error message.- Returns:
- result
-
setResult
public void setResult(String result)
The result of scheduling an Account Updater. If scheduling was successful, this field returns **Success**; otherwise it contains the error message.- Parameters:
result-
-
equals
public boolean equals(Object o)
Return true if this ScheduleAccountUpdaterResult object is equal to o.
-
fromJson
public static ScheduleAccountUpdaterResult fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of ScheduleAccountUpdaterResult given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of ScheduleAccountUpdaterResult
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to ScheduleAccountUpdaterResult
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of ScheduleAccountUpdaterResult to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-