me.figo.internal.SyncTokenRequest 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.List;
import com.google.gson.annotations.Expose;
/**
* Helper type for the call to /rest/sync
*/
public class SyncTokenRequest {
/**
* State to return when coming back to the calling application after the synchronization finished
*/
@Expose
public String state;
/**
* URL to redirect to when the synchronization finished
*/
@Expose
public String redirect_uri;
/**
* Tasks to sync
*/
public List sync_tasks;
public SyncTokenRequest(String state, String redirect_uri) {
this.state = state;
this.redirect_uri = redirect_uri;
}
public SyncTokenRequest(String state, String redirect_uri, List sync_tasks) {
this.state = state;
this.redirect_uri = redirect_uri;
this.sync_tasks = sync_tasks;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy