Package com.adyen.model.management
Class AndroidCertificatesResponse
- java.lang.Object
-
- com.adyen.model.management.AndroidCertificatesResponse
-
public class AndroidCertificatesResponse extends Object
AndroidCertificatesResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAndroidCertificatesResponse.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_DATA
-
Constructor Summary
Constructors Constructor Description AndroidCertificatesResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AndroidCertificatesResponseaddDataItem(AndroidCertificate dataItem)AndroidCertificatesResponsedata(List<AndroidCertificate> data)booleanequals(Object o)static AndroidCertificatesResponsefromJson(String jsonString)Create an instance of AndroidCertificatesResponse given an JSON stringList<AndroidCertificate>getData()Uploaded Android certificates for Android payment terminals.inthashCode()voidsetData(List<AndroidCertificate> data)StringtoJson()Convert an instance of AndroidCertificatesResponse to an JSON stringStringtoString()static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues found
-
-
-
Method Detail
-
data
public AndroidCertificatesResponse data(List<AndroidCertificate> data)
-
addDataItem
public AndroidCertificatesResponse addDataItem(AndroidCertificate dataItem)
-
getData
public List<AndroidCertificate> getData()
Uploaded Android certificates for Android payment terminals.- Returns:
- data
-
setData
public void setData(List<AndroidCertificate> data)
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
IOException- if the JSON Object is invalid with respect to AndroidCertificatesResponse
-
fromJson
public static AndroidCertificatesResponse fromJson(String jsonString) throws IOException
Create an instance of AndroidCertificatesResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of AndroidCertificatesResponse
- Throws:
IOException- if the JSON string is invalid with respect to AndroidCertificatesResponse
-
toJson
public String toJson()
Convert an instance of AndroidCertificatesResponse to an JSON string- Returns:
- JSON string
-
-