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

me.figo.models.ProcessStep 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.

There is a newer version: 4.0.16
Show newest version
package me.figo.models;

import com.google.gson.annotations.Expose;

public class ProcessStep {
	
	@Expose
	private ProcessOption options;
	
	@Expose
	private String type;
	
	public void addOption(ProcessOption options)	{
		this.options = options;
	}

	public ProcessOption getOptions() {
		return options;
	}

	public void setOptions(ProcessOption options) {
		this.options = options;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy