(* Options: Date: 2025-07-18 00:02:06 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://smsgw.intele.no/pushsms/rest //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: RestSmsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace InteleServiceStack.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type RestSmsResponse() = /// ///Overall status of processing the request. Each message will have it's own status. This value indicates if any other error occured or not /// [] [] member val ProcessResult:Boolean = new Boolean() with get,set /// ///Description of any error occured, if ProcessResult equals false /// [] [] [] member val ProcessResultDescription:String = null with get,set /// ///Collection of messages sent or failed /// [] [] member val Messages:RestSmsMessageResp[] = null with get,set [] [] type RestSmsRequest() = interface IReturn /// ///API Username. Usually your customer id /// [] [] [] member val Username:Object = null with get,set /// ///API Password /// [] [] [] member val Password:String = null with get,set /// ///Collection of messages to send /// [] [] member val Messages:RestSmsMessageReq[] = null with get,set