EstimatesDTO.java

package com.tradecloud.dto.external;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class EstimatesDTO {
    private ProductChargesDTO productCharges;
    private String selectedCurrency;

    public ProductChargesDTO getProductCharges() {
        return productCharges;
    }

    public void setProductCharges(ProductChargesDTO productCharges) {
        this.productCharges = productCharges;
    }

    public String getSelectedCurrency() {
        return selectedCurrency;
    }

    public void setSelectedCurrency(String selectedCurrency) {
        this.selectedCurrency = selectedCurrency;
    }
}