/* Options: Date: 2026-04-05 18:17:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ETSOrderConfirmationDetails.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/ETS/Order-Confirmation-Details", Verbs="GET") public static class ETSOrderConfirmationDetails implements IReturn { public String SupplierName = null; public Boolean IsForward = null; public Date ForwardMonthStartingDate = null; public String getSupplierName() { return SupplierName; } public ETSOrderConfirmationDetails setSupplierName(String value) { this.SupplierName = value; return this; } public Boolean getIsForward() { return IsForward; } public ETSOrderConfirmationDetails setIsForward(Boolean value) { this.IsForward = value; return this; } public Date getForwardMonthStartingDate() { return ForwardMonthStartingDate; } public ETSOrderConfirmationDetails setForwardMonthStartingDate(Date value) { this.ForwardMonthStartingDate = value; return this; } private static Object responseType = GetETSOrderConfirmationDetailsViewModel.class; public Object getResponseType() { return responseType; } } public static class GetETSOrderConfirmationDetailsViewModel { public String OrderType = null; public String PaymentTerms = null; public String PaymentDate = null; public String DeliveryDate = null; public String NotesText = null; public Boolean IsForward = null; public String getOrderType() { return OrderType; } public GetETSOrderConfirmationDetailsViewModel setOrderType(String value) { this.OrderType = value; return this; } public String getPaymentTerms() { return PaymentTerms; } public GetETSOrderConfirmationDetailsViewModel setPaymentTerms(String value) { this.PaymentTerms = value; return this; } public String getPaymentDate() { return PaymentDate; } public GetETSOrderConfirmationDetailsViewModel setPaymentDate(String value) { this.PaymentDate = value; return this; } public String getDeliveryDate() { return DeliveryDate; } public GetETSOrderConfirmationDetailsViewModel setDeliveryDate(String value) { this.DeliveryDate = value; return this; } public String getNotesText() { return NotesText; } public GetETSOrderConfirmationDetailsViewModel setNotesText(String value) { this.NotesText = value; return this; } public Boolean getIsForward() { return IsForward; } public GetETSOrderConfirmationDetailsViewModel setIsForward(Boolean value) { this.IsForward = value; return this; } } }