| GET, POST | /fibuscan/Onlinehandel/setOHParserFortschrittsDetails |
|---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using FIBUdataServiceStack.ServiceModel.Messages;
using FIBUdataServiceStack.ServiceModel.Models;
namespace FIBUdataServiceStack.ServiceModel.Messages
{
public partial class setOHParserFortschrittsDetailsRequest
{
public virtual onlinehandel_parser_details details { get; set; }
public virtual string vorgang_guid { get; set; }
public virtual string server_name { get; set; }
public virtual bool ist_del { get; set; }
}
public partial class setOHParserFortschrittsDetailsResponse
{
public virtual bool result { get; set; }
}
}
namespace FIBUdataServiceStack.ServiceModel.Models
{
public partial class onlinehandel_parser_details
: IPrimaryKey, IMandnr, IDel, ITableBase
{
public virtual long? id { get; set; }
public virtual long? mandant { get; set; }
public virtual long? del { get; set; }
public virtual long? abrechnung_id { get; set; }
public virtual DateTime? von { get; set; }
public virtual DateTime? bis { get; set; }
public virtual string server_name { get; set; }
public virtual string vorgang_guid { get; set; }
public virtual DateTime? _erstellt { get; set; }
public virtual DateTime? _aenderung { get; set; }
public virtual decimal? gesamte_zeit { get; set; }
public virtual decimal? dauer { get; set; }
public virtual decimal? prozent { get; set; }
public virtual string regel { get; set; }
public virtual string details { get; set; }
[Ignore]
public virtual long? PrimaryKey { get; set; }
}
}
C# setOHParserFortschrittsDetailsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/Onlinehandel/setOHParserFortschrittsDetails HTTP/1.1
Host: ws4.fibudata.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
details:
{
id: 0,
mandant: 0,
del: 0,
abrechnung_id: 0,
von: 0001-01-01,
bis: 0001-01-01,
server_name: String,
vorgang_guid: String,
_erstellt: 0001-01-01,
_aenderung: 0001-01-01,
gesamte_zeit: 0,
dauer: 0,
prozent: 0,
regel: String,
details: String,
PrimaryKey: 0
},
vorgang_guid: String,
server_name: String,
ist_del: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
result: False
}