/* Options: Date: 2025-06-09 18:59:32 Version: 6.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBVansOnlineCustomerAccount //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Delete.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/delete/", Verbs="POST") open class Delete : IReturn { var CiamId:String? = null var FirstName:String? = null var LastName:String? = null var EmailAddress:String? = null var MobileTelephoneNumber:String? = null companion object { private val responseType = DeleteResponse::class.java } override fun getResponseType(): Any? = Delete.responseType } open class DeleteResponse { var Status:ReturnStatus? = null } open class ReturnStatus { var ReturnCode:String? = null var Message:String? = null }