com.payu.sdk.api.model.Bank 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 Bank {
private String id;
private String description;
private String pseCode;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getPseCode() {
return pseCode;
}
public void setPseCode(String pseCode) {
this.pseCode = pseCode;
}
}