(* Options: Date: 2025-05-05 01:36:06 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: EnsureActionUrl.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.App open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type ActionUrlHttpMethods = | GET = 0 | POST = 1 /// ///Ensures that the specified app user endpoint has the action URL mentioned /// [] [] [] type EnsureActionUrl() = interface IReturnVoid interface IPost /// ///The URL to use /// [] member val Url:String = null with get,set /// ///Clear existing action URLs first /// [] member val ClearExisting:Boolean = new Boolean() with get,set /// ///The HTTP method to use /// [] member val Method:ActionUrlHttpMethods = new ActionUrlHttpMethods() with get,set