/* Options: Date: 2025-12-15 00:33:16 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBPreferencesService //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IntentionsUpdateRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/IntentionsUpdate/", Verbs="POST") open class IntentionsUpdateRequest : IReturn { open var ContractNumber:String? = null open var Intention:String? = null open var IntentionsSource:String? = null open var IntentionsDateTime:Date? = null companion object { private val responseType = IntentionsUpdateResponse::class.java } override fun getResponseType(): Any? = IntentionsUpdateRequest.responseType } open class IntentionsUpdateResponse { open var ResponseStatus:Response? = null } open class Response { open var Code:String? = null open var Message:String? = null }