/* Options: Date: 2024-07-03 12:40:47 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendGetStartedMessage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/messages/getstarted", Verbs="PUT") open class SendGetStartedMessage : IReturn { companion object { private val responseType = SendGetStartedMessageResponse::class.java } override fun getResponseType(): Any? = SendGetStartedMessage.responseType } open class SendGetStartedMessageResponse { var Companies:Int? = null var SentCount:Int? = null var ResponseStatus:ResponseStatus? = null }