(* Options: Date: 2026-01-25 12:21:03 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAlert.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type AlertTriggers = | CallSpend = 0 [] type EntityInfo() = /// ///The ID of the object /// [] member val Id:String = null with get,set /// ///The date the object was created /// [] member val DateCreated:String = null with get,set /// ///The date the object was last modified /// [] member val DateLastModified:String = null with get,set /// ///The user that created this object /// [] member val CreatedBy:String = null with get,set /// ///The user that last modified this object /// [] member val LastModifiedBy:String = null with get,set [] type AlertInfo() = inherit EntityInfo() /// ///The ID of the account associated with this alert /// [] member val AccountId:String = null with get,set /// ///The name of the alert /// [] member val Name:String = null with get,set /// ///The trigger alert /// [] member val Trigger:AlertTriggers = new AlertTriggers() with get,set /// ///The number of hours for the window over which the alert will trigger /// [] member val WindowHours:Double = new Double() with get,set /// ///The value at which the alert will trigger /// [] member val Threshold:Double = new Double() with get,set /// ///The email addresses (one per line) to notify /// [] member val NotificationEmailAddresses:String = null with get,set /// ///Get a specific alert /// [] [] [] type GetAlert() = interface IReturn interface IGet /// ///The ID of the alert you want to get /// [] member val AlertId:String = null with get,set