com.yodlee.api.model.transaction.enums.TransactionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yodlee-api-model-beta Show documentation
Show all versions of yodlee-api-model-beta Show documentation
Yodlee API Model Beta is the stage 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