com.payu.sdk.api.model.payments.PaymentsBanksResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model.payments;
import com.payu.sdk.api.model.Bank;
import com.payu.sdk.api.model.response.Response;
import java.util.List;
public class PaymentsBanksResponse extends Response {
private List banks;
public List getBanks() {
return banks;
}
public void setBanks(List banks) {
this.banks = banks;
}
}