me.figo.models.BusinessProcess 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.List;
import com.google.gson.annotations.Expose;
public class BusinessProcess {
@Expose
private String email;
@Expose
private String password;
@Expose
private String state;
@Expose
private List steps;
public void addStep(ProcessStep step) {
this.steps.add(step);
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public List getSteps() {
return steps;
}
public void setSteps(List steps) {
this.steps = steps;
}
}