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

com.longport.trade.OrderChargeFee Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
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