Package com.adyen.model.paymentsapp
Class PaymentsAppResponse
- java.lang.Object
-
- com.adyen.model.paymentsapp.PaymentsAppResponse
-
public class PaymentsAppResponse extends Object
PaymentsAppResponse
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PAYMENTS_APPS
-
Constructor Summary
Constructors Constructor Description PaymentsAppResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PaymentsAppResponseaddPaymentsAppsItem(PaymentsAppDto paymentsAppsItem)booleanequals(Object o)Return true if this PaymentsAppResponse object is equal to o.static PaymentsAppResponsefromJson(String jsonString)Create an instance of PaymentsAppResponse given an JSON stringList<PaymentsAppDto>getPaymentsApps()List of Payments Apps.inthashCode()PaymentsAppResponsepaymentsApps(List<PaymentsAppDto> paymentsApps)List of Payments Apps.voidsetPaymentsApps(List<PaymentsAppDto> paymentsApps)List of Payments Apps.StringtoJson()Convert an instance of PaymentsAppResponse to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_PAYMENTS_APPS
public static final String JSON_PROPERTY_PAYMENTS_APPS
- See Also:
- Constant Field Values
-
-
Method Detail
-
paymentsApps
public PaymentsAppResponse paymentsApps(List<PaymentsAppDto> paymentsApps)
List of Payments Apps.- Parameters:
paymentsApps-- Returns:
- the current
PaymentsAppResponseinstance, allowing for method chaining
-
addPaymentsAppsItem
public PaymentsAppResponse addPaymentsAppsItem(PaymentsAppDto paymentsAppsItem)
-
getPaymentsApps
public List<PaymentsAppDto> getPaymentsApps()
List of Payments Apps.- Returns:
- paymentsApps
-
setPaymentsApps
public void setPaymentsApps(List<PaymentsAppDto> paymentsApps)
List of Payments Apps.- Parameters:
paymentsApps-
-
equals
public boolean equals(Object o)
Return true if this PaymentsAppResponse object is equal to o.
-
fromJson
public static PaymentsAppResponse fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of PaymentsAppResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of PaymentsAppResponse
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to PaymentsAppResponse
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of PaymentsAppResponse to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-