com.payu.sdk.api.model.BankListInformation 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;
public class BankListInformation {
private CountryCode paymentCountry;
private String paymentMethod;
public BankListInformation(String paymentMethod, CountryCode paymentCountry) {
this.paymentMethod = paymentMethod;
this.paymentCountry = paymentCountry;
}
public CountryCode getPaymentCountry() {
return paymentCountry;
}
public void setPaymentCountry(CountryCode paymentCountry) {
this.paymentCountry = paymentCountry;
}
public String getPaymentMethod() {
return paymentMethod;
}
public void setPaymentMethod(String paymentMethod) {
this.paymentMethod = paymentMethod;
}
}