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

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

There is a newer version: 2.1.5
Show newest version
package com.longport.trade;

import java.math.BigDecimal;
import java.util.Arrays;

public class OrderChargeDetail {
    private BigDecimal totalAmount;
    private String currency;
    private OrderChargeItem[] items;

    public BigDecimal getTotalAmount() {
        return totalAmount;
    }

    public String getCurrency() {
        return currency;
    }

    public OrderChargeItem[] getItems() {
        return items;
    }

    @Override
    public String toString() {
        return "OrderChargeDetail [totalAmount=" + totalAmount + ", currency=" + currency + ", items="
                + Arrays.toString(items) + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy