FIBUdataServiceStack

<back to all web services

setOHParserFortschrittsDetailsRequest

The following routes are available for this service:
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 .other suffix or ?format=other

HTTP + OTHER

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/jsonl
Content-Type: text/jsonl
Content-Length: length

{"details":{"id":0,"mandant":0,"del":0,"abrechnung_id":0,"von":"\/Date(-62135596800000-0000)\/","bis":"\/Date(-62135596800000-0000)\/","server_name":"String","vorgang_guid":"String","_erstellt":"\/Date(-62135596800000-0000)\/","_aenderung":"\/Date(-62135596800000-0000)\/","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/jsonl
Content-Length: length

{"result":false}