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

me.figo.internal.AddProviderAccessRequest 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.internal;

import java.util.Map;

import com.google.gson.annotations.Expose;

import me.figo.models.Consent;

public class AddProviderAccessRequest {

	@Expose
	private String access_method_id;
	
	@Expose
	private boolean save_credentials;

	@Expose
	private Map credentials;

	@Expose
	private Consent consent;

	public AddProviderAccessRequest(String access_method_id, AccountIdentifier account_identifier,
			boolean save_credentials,
			Map credentials, Consent consent) {
		super();
		this.access_method_id = access_method_id;
		this.credentials = credentials;
		this.consent = consent;
	}

	public String getAccessMethodId() {
		return access_method_id;
	}

	public void setAccessMethodId(String accessMethodId) {
		this.access_method_id = accessMethodId;
	}

	public boolean isSave_credentials() {
		return save_credentials;
	}

	public void setSave_credentials(boolean save_credentials) {
		this.save_credentials = save_credentials;
	}

	public Consent getConsent() {
		return consent;
	}

	public void setConsent(Consent consent) {
		this.consent = consent;
	}

	public String getAccess_method_id() {
		return access_method_id;
	}

	public void setAccess_method_id(String access_method_id) {
		this.access_method_id = access_method_id;
	}

	public Map getCredentials() {
		return credentials;
	}

	public void setCredentials(Map credentials) {
		this.credentials = credentials;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy