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

com.yodlee.api.model.transaction.enums.TransactionStatus Maven / Gradle / Ivy

There is a newer version: 1.0.29.beta1
Show newest version
/**
 * Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
 *
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
package com.yodlee.api.model.transaction.enums;

public enum TransactionStatus {
	/**
	 * Denotes that the transaction is realized on the account's balance
	 */
	POSTED,//
	/**
	 * Denotes that the transaction is not yet realized on the account's balance
	 */
	PENDING,//
	/**
	 * Denotes that the transacation is a future dated transaction
	 */
	SCHEDULED,
	/**
	 * Denotes the failed transactions. It is only applicable to rejected claims in a Flexible Spending account
	 */
	FAILED,
	/**
	 * Denotes that the manual transaction is added via Envestnet | Yodlee Financial Wellness Solutions or 
	 * a transaction that the system has created when an account is closed using API or an application
	 */
	CLEARED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy