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

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

	@Expose
	private String tan_scheme_id;
	
	@Expose
	private String name;
	
	@Expose
	private String medium_name;

    public String getTan_scheme_id() {
        return tan_scheme_id;
    }

    public void setTan_scheme_id(String tan_scheme_id) {
        this.tan_scheme_id = tan_scheme_id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getMedium_name() {
        return medium_name;
    }

    public void setMedium_name(String medium_name) {
        this.medium_name = medium_name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy