| GET, POST | /fibuscan/Onlinehandel/setOHParserFortschrittsDetails |
|---|
import Foundation
import ServiceStack
public class setOHParserFortschrittsDetailsRequest : Codable
{
public var details:onlinehandel_parser_details
public var vorgang_guid:String
public var server_name:String
public var ist_del:Bool
required public init(){}
}
public class onlinehandel_parser_details : IPrimaryKey, IMandnr, IDel, ITableBase, Codable
{
public var id:Int?
public var mandant:Int?
public var del:Int?
public var abrechnung_id:Int?
public var von:Date?
public var bis:Date?
public var server_name:String
public var vorgang_guid:String
public var _erstellt:Date?
public var _aenderung:Date?
public var gesamte_zeit:Double?
public var dauer:Double?
public var prozent:Double?
public var regel:String
public var details:String
// @Ignore()
public var primaryKey:Int?
required public init(){}
}
public class setOHParserFortschrittsDetailsResponse : Codable
{
public var result:Bool
required public init(){}
}
Swift setOHParserFortschrittsDetailsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=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}