/* Options: Date: 2025-12-06 06:21:51 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendRapidLocationCommand.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/pulsit/sendrapidlocationcommand", Verbs="POST") open class SendRapidLocationCommand : IReturn { var PulsitModuleId:String? = null companion object { private val responseType = ApiServiceResponse::class.java } override fun getResponseType(): Any? = SendRapidLocationCommand.responseType } open class ApiServiceResponse : IServiceResponse { var Description:String? = null var Heading:String? = null var WasSuccessful:Boolean? = null var ModelState:Object? = null } open interface IServiceResponse { var WasSuccessful:Boolean? var Description:String? var Heading:String? }