FrameAppWS

<back to all web services

ProcesarPlanoIDRQ

Requires Authentication
The following routes are available for this service:
All Verbs/Utilidades/Archivos/ProcesarPlanoID
namespace Administrador.Modelo.General

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type ProcesarPlanoRS() = 
        member val Success:Boolean = new Boolean() with get,set
        member val Error:String = null with get,set

    [<AllowNullLiteral>]
    type ProcesarPlanoIDRQ() = 
        member val IDPlano:Int32 = new Int32() with get,set
        member val IDCarga:Int32 = new Int32() with get,set
        member val Estado:String = null with get,set

F# ProcesarPlanoIDRQ DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Utilidades/Archivos/ProcesarPlanoID HTTP/1.1 
Host: soluser-recaudo.sgsas.co 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	IDPlano: 0,
	IDCarga: 0,
	Estado: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Success: False,
	Error: String
}