TermsOfDelivery.java
package com.tradecloud.dto.external;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class TermsOfDelivery {
private OfferBaseDTO.Incoterm incoTerms;
private String incoTermsLocation;
public OfferBaseDTO.Incoterm getIncoTerms() {
return incoTerms;
}
public void setIncoTerms(OfferBaseDTO.Incoterm incoTerms) {
this.incoTerms = incoTerms;
}
public String getIncoTermsLocation() {
return incoTermsLocation;
}
public void setIncoTermsLocation(String incoTermsLocation) {
this.incoTermsLocation = incoTermsLocation;
}
}