/* Options: Date: 2026-04-05 18:25:54 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ETSOrderConfirmationDetails.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/ETS/Order-Confirmation-Details", Verbs="GET") open class ETSOrderConfirmationDetails : IReturn { var SupplierName:String? = null var IsForward:Boolean? = null var ForwardMonthStartingDate:Date? = null companion object { private val responseType = GetETSOrderConfirmationDetailsViewModel::class.java } override fun getResponseType(): Any? = ETSOrderConfirmationDetails.responseType } open class GetETSOrderConfirmationDetailsViewModel { var OrderType:String? = null var PaymentTerms:String? = null var PaymentDate:String? = null var DeliveryDate:String? = null var NotesText:String? = null var IsForward:Boolean? = null }