com.longport.trade.CashFlow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-sdk Show documentation
Show all versions of openapi-sdk Show documentation
LongPort OpenAPI SDK for Java
package com.longport.trade;
import java.math.BigDecimal;
import java.time.OffsetDateTime;
public class CashFlow {
private String transactionFlowName;
private CashFlowDirection direction;
private BalanceType businessType;
private BigDecimal balance;
private String currency;
private OffsetDateTime businessTime;
private String symbol;
private String description;
public String getTransactionFlowName() {
return transactionFlowName;
}
public CashFlowDirection getDirection() {
return direction;
}
public BalanceType getBusinessType() {
return businessType;
}
public BigDecimal getBalance() {
return balance;
}
public String getCurrency() {
return currency;
}
public OffsetDateTime getBusinessTime() {
return businessTime;
}
public String getSymbol() {
return symbol;
}
public String getDescription() {
return description;
}
@Override
public String toString() {
return "CashFlow [balance=" + balance + ", businessTime=" + businessTime + ", businessType=" + businessType
+ ", currency=" + currency + ", description=" + description + ", direction=" + direction + ", symbol="
+ symbol + ", transactionFlowName=" + transactionFlowName + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy