/* Options: Date: 2025-12-06 08:53:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteThunderBoltActions.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/thunderbolt/delete", Verbs="DELETE") open class DeleteThunderBoltActions : ApiServiceRequest(), IReturn { var id:Int? = null companion object { private val responseType = DeleteThunderBoltActionsResponse::class.java } override fun getResponseType(): Any? = DeleteThunderBoltActions.responseType } open class DeleteThunderBoltActionsResponse : ApiServiceResponse() { var dailyActionsNumber:Int? = null var thunderBoltActions:ArrayList = ArrayList() var thunderBoltActionEvents:ArrayList = ArrayList() } open class ApiServiceRequest : IServiceRequest, IHasApiKey, IHasDeviceInfo { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var apiKey:String? = null /** * Latitude of the user making this request */ @ApiMember(DataType="double", Description="Latitude of the user making this request") var latitude:Double? = null /** * Longitude of the user making this request */ @ApiMember(DataType="double", Description="Longitude of the user making this request") var longitude:Double? = null } open interface IServiceRequest { } open interface IHasApiKey { var apiKey:String? } open interface IHasDeviceInfo { } open class EnumOption { var value:Int? = null var label:String? = null } open class ThunderBoltActionData { var id:Int? = null var actionName:String? = null var color:String? = null var dailyActionCount:Int? = null var showNumberInput:Boolean? = null var showEmailInput:Boolean? = null var showPlatformInput:Boolean? = null var showDateTimeInput:Boolean? = null var contactInteractionPlatforms:ArrayList = ArrayList() } open class ThunderBoltActionEventData { var id:Int? = null var createdDate:String? = null var actionId:Int? = null var actionName:String? = null var color:String? = null var notes:String? = null } open class ApiServiceResponse : IServiceResponse { var description:String? = null var heading:String? = null var wasSuccessful:Boolean? = null var modelState:Object? = null }