DutyDrawBackInvoiceDTO.java
package com.tradecloud.dto.external;
import java.util.ArrayList;
import java.util.List;
public class DutyDrawBackInvoiceDTO {
private String reference;
private List<DutyDrawBackItemLinkDTO> dutyDrawBackItemLinkDTOS;
public String getReference() {
return reference;
}
public void setReference(String reference) {
this.reference = reference;
}
public List<DutyDrawBackItemLinkDTO> getDutyDrawBackItemLinkDTOS() {
if (dutyDrawBackItemLinkDTOS == null) {
dutyDrawBackItemLinkDTOS = new ArrayList<>();
}
return dutyDrawBackItemLinkDTOS;
}
public void setDutyDrawBackItemLinkDTOS(List<DutyDrawBackItemLinkDTO> dutyDrawBackItemLinkDTOS) {
this.dutyDrawBackItemLinkDTOS = dutyDrawBackItemLinkDTOS;
}
}