me.figo.models.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
This SDK eases the development of Java applications and web services consuming the figo connect API.
Figo connect allows developers simple access to users bank data on a trustworthy basis. Users can grant your
application access to certain parts of their bank accounts and you can access them without worrying about the
inner workings of online banking.
package me.figo.models;
import java.util.HashMap;
import java.util.List;
import com.google.gson.annotations.Expose;
public class Service {
@Expose
private String name;
@Expose
private String bank_code;
@Expose
private String icon;
@Expose
private HashMap additional_icons;
@Expose
private List credentials;
public Service() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getBankCode() {
return bank_code;
}
public void setBankCode(String bankCode) {
this.bank_code = bankCode;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public HashMap getAdditionalIcons() {
return additional_icons;
}
public void setAdditional_icons(HashMap additionalIcons) {
this.additional_icons = additionalIcons;
}
public List getCredentials() {
return credentials;
}
public void setCredentials(List credentials) {
this.credentials = credentials;
}
public static class ServiceResponse {
@Expose
private List services;
public ServiceResponse() {
}
public List getServices() {
return services;
}
}
}