Package com.adyen.model.management
Class UninstallAndroidAppDetails
- java.lang.Object
-
- com.adyen.model.management.UninstallAndroidAppDetails
-
public class UninstallAndroidAppDetails extends Object
UninstallAndroidAppDetails
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUninstallAndroidAppDetails.TypeEnumType of terminal action: Uninstall an Android app.
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_APP_IDstatic StringJSON_PROPERTY_TYPE
-
Constructor Summary
Constructors Constructor Description UninstallAndroidAppDetails()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description UninstallAndroidAppDetailsappId(String appId)booleanequals(Object o)Return true if this UninstallAndroidAppDetails object is equal to o.static UninstallAndroidAppDetailsfromJson(String jsonString)Create an instance of UninstallAndroidAppDetails given an JSON stringStringgetAppId()The unique identifier of the app to be uninstalled.UninstallAndroidAppDetails.TypeEnumgetType()Type of terminal action: Uninstall an Android app.inthashCode()voidsetAppId(String appId)The unique identifier of the app to be uninstalled.voidsetType(UninstallAndroidAppDetails.TypeEnum type)Type of terminal action: Uninstall an Android app.StringtoJson()Convert an instance of UninstallAndroidAppDetails to an JSON stringStringtoString()UninstallAndroidAppDetailstype(UninstallAndroidAppDetails.TypeEnum type)
-
-
-
Field Detail
-
JSON_PROPERTY_APP_ID
public static final String JSON_PROPERTY_APP_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_TYPE
public static final String JSON_PROPERTY_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
appId
public UninstallAndroidAppDetails appId(String appId)
-
getAppId
public String getAppId()
The unique identifier of the app to be uninstalled.- Returns:
- appId
-
setAppId
public void setAppId(String appId)
The unique identifier of the app to be uninstalled.- Parameters:
appId-
-
type
public UninstallAndroidAppDetails type(UninstallAndroidAppDetails.TypeEnum type)
-
getType
public UninstallAndroidAppDetails.TypeEnum getType()
Type of terminal action: Uninstall an Android app.- Returns:
- type
-
setType
public void setType(UninstallAndroidAppDetails.TypeEnum type)
Type of terminal action: Uninstall an Android app.- Parameters:
type-
-
equals
public boolean equals(Object o)
Return true if this UninstallAndroidAppDetails object is equal to o.
-
fromJson
public static UninstallAndroidAppDetails fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of UninstallAndroidAppDetails given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of UninstallAndroidAppDetails
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to UninstallAndroidAppDetails
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of UninstallAndroidAppDetails to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-