Class GetStoresUnderAccountResponse
- java.lang.Object
-
- com.adyen.model.posterminalmanagement.GetStoresUnderAccountResponse
-
public class GetStoresUnderAccountResponse extends Object
GetStoresUnderAccountResponse
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_STORES
-
Constructor Summary
Constructors Constructor Description GetStoresUnderAccountResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description GetStoresUnderAccountResponseaddStoresItem(Store storesItem)booleanequals(Object o)Return true if this GetStoresUnderAccountResponse object is equal to o.static GetStoresUnderAccountResponsefromJson(String jsonString)Create an instance of GetStoresUnderAccountResponse given an JSON stringList<Store>getStores()Array that returns a list of all stores for the specified merchant account, or for all merchant accounts under the company account.inthashCode()voidsetStores(List<Store> stores)Array that returns a list of all stores for the specified merchant account, or for all merchant accounts under the company account.GetStoresUnderAccountResponsestores(List<Store> stores)StringtoJson()Convert an instance of GetStoresUnderAccountResponse to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_STORES
public static final String JSON_PROPERTY_STORES
- See Also:
- Constant Field Values
-
-
Method Detail
-
stores
public GetStoresUnderAccountResponse stores(List<Store> stores)
-
addStoresItem
public GetStoresUnderAccountResponse addStoresItem(Store storesItem)
-
getStores
public List<Store> getStores()
Array that returns a list of all stores for the specified merchant account, or for all merchant accounts under the company account.- Returns:
- stores
-
setStores
public void setStores(List<Store> stores)
Array that returns a list of all stores for the specified merchant account, or for all merchant accounts under the company account.- Parameters:
stores-
-
equals
public boolean equals(Object o)
Return true if this GetStoresUnderAccountResponse object is equal to o.
-
fromJson
public static GetStoresUnderAccountResponse fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of GetStoresUnderAccountResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of GetStoresUnderAccountResponse
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to GetStoresUnderAccountResponse
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of GetStoresUnderAccountResponse to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-