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

io.github.dft.cario.model.consignment.response.ConsignmentCosts Maven / Gradle / Ivy

The newest version!
package io.github.dft.cario.model.consignment.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

import java.time.LocalDateTime;
import java.util.List;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class ConsignmentCosts {
    private Integer customerServiceID;
    private Integer freight;
    private Integer fees;
    private Integer net;
    private Integer tax;
    private Integer total;
    private String displayName;
    private Boolean isHandRated;
    private Integer markupPercentage;
    private List feeDetails;
    private LocalDateTime eta;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy