/* Options: Date: 2026-04-05 18:25:55 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: VesselSearch.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Vessels/Search", Verbs="GET") open class VesselSearch : IReturn { var Search:String? = null companion object { private val responseType = VesselViewModel::class.java } override fun getResponseType(): Any? = VesselSearch.responseType } open class VesselViewModel { var Id:Int? = null var IMONumber:Int? = null var MMSI:String? = null var Name:String? = null }