(* Options: Date: 2025-09-14 05:52:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.trackunit.com/public //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAlarmLog.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Trackunit.API open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type Location() = [] member val Latitude:Double = new Double() with get,set [] member val Longitude:Double = new Double() with get,set [] [] type Address() = [] member val Country:String = null with get,set [] member val ZipCode:String = null with get,set [] member val City:String = null with get,set [] member val StreetAddress:String = null with get,set [] [] type AlarmRecipient() = [] member val ContactId:String = null with get,set [] member val SentVia:String = null with get,set [] member val PhoneNumber:String = null with get,set [] member val Email:String = null with get,set [] member val Delivered:Boolean = new Boolean() with get,set [] [] type AlarmLog() = [] member val AlarmId:String = null with get,set [] member val UnitId:String = null with get,set [] member val TriggeredAt:DateTime = new DateTime() with get,set [] member val Address:Address = null with get,set [] member val Location:Location = null with get,set [] member val Recipients:ResizeArray = null with get,set [] [] type GetAlarmLogResponse() = [] member val List:ResizeArray = null with get,set [] member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] type GetAlarmLog() = interface IReturn [] member val UnitId:String = null with get,set [] member val DateFrom:Nullable = new Nullable() with get,set [] member val DateTo:Nullable = new Nullable() with get,set