All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.figo.internal.SyncStatusResponse Maven / Gradle / Ivy

Go to download

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 java.util.Date;

import com.google.gson.annotations.Expose;

import me.figo.models.ChallengeV4;

public class SyncStatusResponse {

	@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 getCreatedAt() {
		return created_at;
	}

	public void setCreatedAt(Date created_at) {
		this.created_at = created_at;
	}

	public Date getStartedAt() {
		return started_at;
	}

	public void setStartedAt(Date started_at) {
		this.started_at = started_at;
	}

	public Date getEndedAt() {
		return ended_at;
	}

	public void setEndedAt(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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy