me.figo.internal.StartProviderSyncResponse 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.internal;
import java.util.Date;
import com.google.gson.annotations.Expose;
import me.figo.models.ChallengeV4;
public class StartProviderSyncResponse {
@Expose
public String id;
// @TODO maybe introduce enum here
@Expose
public String status;
@Expose
public Date created_at;
@Expose
public Date started_at;
@Expose
public Date ended_at;
@Expose
public ChallengeV4 challenge;
@Expose
public Object error;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getCreated_at() {
return created_at;
}
public void setCreated_at(Date created_at) {
this.created_at = created_at;
}
public Date getStarted_at() {
return started_at;
}
public void setStarted_at(Date started_at) {
this.started_at = started_at;
}
public Date getEnded_at() {
return ended_at;
}
public void setEnded_at(Date ended_at) {
this.ended_at = ended_at;
}
public Object getChallenge() {
return challenge;
}
public void setChallenge(ChallengeV4 challenge) {
this.challenge = challenge;
}
public Object getError() {
return error;
}
public void setError(Object error) {
this.error = error;
}
}