Package com.adyen.model.management
Class Logo
- java.lang.Object
-
- com.adyen.model.management.Logo
-
public class Logo extends Object
Logo
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_DATA
-
Constructor Summary
Constructors Constructor Description Logo()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Logodata(String data)booleanequals(Object o)Return true if this Logo object is equal to o.static LogofromJson(String jsonString)Create an instance of Logo given an JSON stringStringgetData()The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.inthashCode()voidsetData(String data)The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.StringtoJson()Convert an instance of Logo to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_DATA
public static final String JSON_PROPERTY_DATA
- See Also:
- Constant Field Values
-
-
Method Detail
-
getData
public String getData()
The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.- Returns:
- data
-
setData
public void setData(String data)
The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.- Parameters:
data-
-
equals
public boolean equals(Object o)
Return true if this Logo object is equal to o.
-
fromJson
public static Logo fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of Logo given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of Logo
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to Logo
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of Logo to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-