Package com.adyen.model.management
Class GiroPayInfo
- java.lang.Object
-
- com.adyen.model.management.GiroPayInfo
-
public class GiroPayInfo extends Object
GiroPayInfo
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_SUPPORT_EMAIL
-
Constructor Summary
Constructors Constructor Description GiroPayInfo()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this GiroPayInfo object is equal to o.static GiroPayInfofromJson(String jsonString)Create an instance of GiroPayInfo given an JSON stringStringgetSupportEmail()The email address of merchant support.inthashCode()voidsetSupportEmail(String supportEmail)The email address of merchant support.GiroPayInfosupportEmail(String supportEmail)The email address of merchant support.StringtoJson()Convert an instance of GiroPayInfo to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_SUPPORT_EMAIL
public static final String JSON_PROPERTY_SUPPORT_EMAIL
- See Also:
- Constant Field Values
-
-
Method Detail
-
supportEmail
public GiroPayInfo supportEmail(String supportEmail)
The email address of merchant support.- Parameters:
supportEmail-- Returns:
- the current
GiroPayInfoinstance, allowing for method chaining
-
getSupportEmail
public String getSupportEmail()
The email address of merchant support.- Returns:
- supportEmail
-
setSupportEmail
public void setSupportEmail(String supportEmail)
The email address of merchant support.- Parameters:
supportEmail-
-
equals
public boolean equals(Object o)
Return true if this GiroPayInfo object is equal to o.
-
fromJson
public static GiroPayInfo fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of GiroPayInfo given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of GiroPayInfo
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to GiroPayInfo
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of GiroPayInfo to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-