me.figo.internal.TaskStatusResponse 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.internal;
import me.figo.models.ApiError;
import me.figo.models.Challenge;
import com.google.gson.annotations.Expose;
public class TaskStatusResponse {
@Expose
private String account_id;
@Expose
private String message;
@Expose
private boolean is_waiting_for_pin;
@Expose
private boolean is_waiting_for_response;
@Expose
private boolean is_erroneous;
@Expose
private boolean is_ended;
@Expose
private Challenge challenge;
@Expose
private ApiError error;
public String getAccountId() {
return account_id;
}
public String getMessage() {
return message;
}
public boolean isWaitingForPin() {
return is_waiting_for_pin;
}
public boolean isWaitingForResponse() {
return is_waiting_for_response;
}
public boolean isErroneous() {
return is_erroneous;
}
public boolean isEnded() {
return is_ended;
}
public Challenge getChallenge() {
return challenge;
}
public ApiError getError() {
return error;
}
}