me.figo.models.Access 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.
The newest version!
package me.figo.models;
import java.util.Date;
import java.util.List;
import com.google.gson.annotations.Expose;
public class Access {
@Expose
private String id;
@Expose
private String access_method_id;
@Expose
private boolean save_credentials;
@Expose
private Consent consent;
@Expose
private Date created_at;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getAccessMethodId() {
return access_method_id;
}
public void setAccessMethodId(String accessMethodId) {
this.access_method_id = accessMethodId;
}
public boolean isSave_credentials() {
return save_credentials;
}
public void setSave_credentials(boolean save_credentials) {
this.save_credentials = save_credentials;
}
public Consent getConsent() {
return consent;
}
public void setConsent(Consent consent) {
this.consent = consent;
}
public Date getCreatedAt() {
return created_at;
}
public void setCreatedAt(Date createdAt) {
this.created_at = createdAt;
}
public Access() {
}
public static class AccessResponse {
@Expose
private List accesses;
public AccessResponse() {
}
public List getAccesses() {
return accesses;
}
}
}