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

me.figo.models.PaymentProposal 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 java.util.List;

import com.google.gson.annotations.Expose;

public class PaymentProposal {

	@Expose
	private String account_number;
	
	@Expose
	private String bank_code;
	
	@Expose
	private String name;
	
	public PaymentProposal()	{
		
	}

	public String getAccountNumber() {
		return account_number;
	}

	public void setAccountNumber(String accountNumber) {
		this.account_number = accountNumber;
	}

	public String getBankCode() {
		return bank_code;
	}

	public void setBankCode(String bankCode) {
		this.bank_code = bankCode;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
	
	public static class PaymentProposalResponse	{
		@Expose
		private List paymentProposals;
		
		public PaymentProposalResponse()	{
			
		}
		
		public List getPaymentProposals()	{
			return paymentProposals;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy