(* Options: Date: 2025-12-06 08:55:27 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SubmitThunderBoltAction.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ApiServiceRequest() = /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set /// ///Latitude of the user making this request /// [] member val Latitude:Double = new Double() with get,set /// ///Longitude of the user making this request /// [] member val Longitude:Double = new Double() with get,set [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type IHasDeviceInfo = interface end type ContactInteractionPlatform = | None = 0 | Whatsapp = 1 | Linkus = 2 | Mobile = 3 | Outlook = 4 | LinkedIn = 5 | Telegram = 6 | Signal = 7 | Sms = 8 [] type GetThunderBoltActionsResponse() = inherit ApiServiceResponse() member val DailyActionsNumber:Int32 = new Int32() with get,set member val SupportingDocumentProbability:Int32 = new Int32() with get,set member val ThunderBoltActions:ResizeArray = new ResizeArray() with get,set member val ThunderBoltActionEvents:ResizeArray = new ResizeArray() with get,set member val Contacts:ResizeArray = new ResizeArray() with get,set [] type SubmitThunderBoltActionResponse() = inherit GetThunderBoltActionsResponse() member val ThunderboltActionEventId:Int32 = new Int32() with get,set [] [] type SubmitThunderBoltAction() = inherit ApiServiceRequest() interface IReturn member val ActionId:Int32 = new Int32() with get,set member val Platform:ContactInteractionPlatform = new ContactInteractionPlatform() with get,set member val Number:String = null with get,set member val Email:String = null with get,set member val Notes:String = null with get,set member val DateTime:DateTime = new DateTime() with get,set member val ContactId:Int32 = new Int32() with get,set