com.yodlee.api.model.transaction.Transaction 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;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({"accountId", "merchant", "status", "CONTAINER", "isManual", "postDate", "categoryType",
"categoryId", "type", "date", "runningBalance", "id", "amount", "category", "baseType", "highLevelCategoryId",
"subType", "description", "categorySource", "memo", "cusipNumber", "isin", "sedol", "valoren",
"holdingDescription", "interest", "price", "principal", "quantity", "settleDate", "symbol", "transactionDate",
"parentCategoryId", "detailCategoryId", "checkNumber", "commission", "frequency", "isRecurring", "intermediary",
"isPhysical", "merchantType", "sourceType", "createdDate", "lastUpdated"})
public class Transaction extends AbstractTransaction {
@Override
public String toString() {
return "Transaction [accountId=" + accountId + ", merchant=" + merchant + ", status=" + status + ", container="
+ container + ", isManual=" + isManual + ", postDate=" + postDate + ", categoryType=" + categoryType
+ ", categoryId=" + categoryId + ", type=" + type + ", date=" + date + ", runningBalance="
+ runningBalance + ", id=" + id + ", amount=" + amount + ", category=" + category + ", baseType="
+ baseType + ", highLevelCategoryId=" + highLevelCategoryId + ", subType=" + subType + ", description="
+ description + ", categorySource=" + categorySource + ", memo=" + memo + ", cusipNumber=" + cusipNumber
+ ", isin=" + isin + ", sedol=" + sedol + ", valoren=" + valoren + ", holdingDescription="
+ holdingDescription + ", interest=" + interest + ", price=" + price + ", principal=" + principal
+ ", quantity=" + quantity + ", settleDate=" + settleDate + ", symbol=" + symbol + ", transactionDate="
+ transactionDate + ", parentCategoryId=" + parentCategoryId + ", detailCategoryId=" + detailCategoryId
+ ", checkNumber=" + checkNumber + ", commission=" + commission + ", intermediary=" + intermediary + ", sourceType=" + sourceType
+ ", isPhysical=" + isPhysical + ", merchantType=" + merchantType + ",createdDate=" + createdDate + ", lastUpdated=" + lastUpdated + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy