com.longport.trade.OrderChargeFee 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;
public class OrderChargeFee {
private String code;
private String name;
private BigDecimal amount;
private String currency;
public String getCode() {
return code;
}
public String getName() {
return name;
}
public BigDecimal getAmount() {
return amount;
}
public String getCurrency() {
return currency;
}
@Override
public String toString() {
return "OrderChargeFee [code=" + code + ", name=" + name + ", amount=" + amount + ", currency=" + currency
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy