/* Options: Date: 2026-04-05 18:27:02 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: GetBuyingTermsForEnquiryAndEntity.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Buying-Terms/Get-Buying-Terms-For-Enquiry-And-Entity", Verbs="GET") open class GetBuyingTermsForEnquiryAndEntity : IReturn { var EnquiryId:Int? = null var EntityContactId:Int? = null companion object { private val responseType = GetBuyingTermsForEnquiryAndEntityViewModel::class.java } override fun getResponseType(): Any? = GetBuyingTermsForEnquiryAndEntity.responseType } open class GetBuyingTermsForEnquiryAndEntityViewModel { var Information:ArrayList? = null }