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

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

package me.figo.internal;

import java.util.List;

import me.figo.models.Account;

import com.google.gson.annotations.Expose;

public class AccountOrderRequest {
	
	@Expose
	private List accounts;
	
	public AccountOrderRequest()	{
		
	}
	
	public AccountOrderRequest(List orderedList)	{
		for(Account account : orderedList)	{
			accounts.add(account.getAccountId());
		}
	}

	public List getAccounts() {
		return accounts;
	}

	public void setAccounts(List accounts) {
		this.accounts = accounts;
	}
		
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy