me.figo.models.AccessMethod 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.List;
import com.google.gson.annotations.Expose;
public class AccessMethod {
@Expose
private String id;
@Expose
private boolean in_psd2_scope;
@Expose
private String type;
@Expose
private List supported_account_types;
@Expose
private boolean configurable_consent;
@Expose
private boolean requires_account_identifiers;
@Expose
private List customer_authentication_flows;
@Expose
private String advice;
@Expose
private List credentials;
public List getCredentials() {
return credentials;
}
public String getAdvice() {
return advice;
}
public String getId() {
return id;
}
public boolean isIn_psd2_scope() {
return in_psd2_scope;
}
public String getType() {
return type;
}
public List getSupported_account_types() {
return supported_account_types;
}
public boolean isConfigurable_consent() {
return configurable_consent;
}
public boolean isRequires_account_identifiers() {
return requires_account_identifiers;
}
public List getCustomer_authentication_flows() {
return customer_authentication_flows;
}
}