/* Options: Date: 2025-12-06 08:52:59 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: GetThunderBoltActions.* //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/actions", Verbs="GET") open class GetThunderBoltActions : ApiServiceRequest(), IReturn { companion object { private val responseType = GetThunderBoltActionsResponse::class.java } override fun getResponseType(): Any? = GetThunderBoltActions.responseType } open class GetThunderBoltActionsResponse : ApiServiceResponse() { var dailyActionsNumber:Int? = null var supportingDocumentProbability:Int? = null var thunderBoltActions:ArrayList = ArrayList() var thunderBoltActionEvents:ArrayList = ArrayList() var contacts: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 ContactData { var contactId:Int? = null var contactName:String? = null var email:String? = null var phoneNumber:String? = null } open class ApiServiceResponse : IServiceResponse { var description:String? = null var heading:String? = null var wasSuccessful:Boolean? = null var modelState:Object? = null }