(* Options: Date: 2025-06-07 16:43:12 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ExecuteDBFunctionRQ.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Administrador.Modelo.Tipos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GeneralRS() = /// ///Id del código de respuesta 1: Correcto, -1: Error /// [] member val Codigo:Int32 = new Int32() with get,set /// ///Mensaje que se envía al ejecutar el servicio /// [] member val Mensaje:String = null with get,set [] type ExecuteDBFunctionRS() = inherit GeneralRS() member val Respuesta:Object = null with get,set member val IDEjecucion:Decimal = new Decimal() with get,set member val URLArchivo:String = null with get,set member val TipoRespuesta:String = null with get,set member val Background:Boolean = new Boolean() with get,set member val TiempoRespuestaBD:Int64 = new Int64() with get,set member val TiempoRespuestaTotal:Int64 = new Int64() with get,set /// ///Id del código de respuesta 1: Correcto, -1: Error /// [] member val Codigo:Int32 = new Int32() with get,set /// ///Mensaje que se envía al ejecutar el servicio /// [] member val Mensaje:String = null with get,set [] [] type ExecuteDBFunctionRQ() = interface IReturn member val NombreServicio:String = null with get,set member val Parametros:Dictionary = new Dictionary() with get,set