/* Options: Date: 2026-05-09 17:13:09 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: setOHParserFortschrittsDetailsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/fibuscan/Onlinehandel/setOHParserFortschrittsDetails", Verbs="GET, POST") public static class setOHParserFortschrittsDetailsRequest implements IReturn { public onlinehandel_parser_details details = null; public String vorgang_guid = null; public String server_name = null; public Boolean ist_del = null; public onlinehandel_parser_details getDetails() { return details; } public setOHParserFortschrittsDetailsRequest setDetails(onlinehandel_parser_details value) { this.details = value; return this; } public String getVorgangGuid() { return vorgang_guid; } public setOHParserFortschrittsDetailsRequest setVorgangGuid(String value) { this.vorgang_guid = value; return this; } public String getServerName() { return server_name; } public setOHParserFortschrittsDetailsRequest setServerName(String value) { this.server_name = value; return this; } public Boolean getIstDel() { return ist_del; } public setOHParserFortschrittsDetailsRequest setIstDel(Boolean value) { this.ist_del = value; return this; } private static Object responseType = setOHParserFortschrittsDetailsResponse.class; public Object getResponseType() { return responseType; } } public static class setOHParserFortschrittsDetailsResponse { public Boolean result = null; public Boolean isResult() { return result; } public setOHParserFortschrittsDetailsResponse setResult(Boolean value) { this.result = value; return this; } } public static class onlinehandel_parser_details implements IPrimaryKey, IMandnr, IDel, ITableBase { public Long id = null; public Long mandant = null; public Long del = null; public Long abrechnung_id = null; public Date von = null; public Date bis = null; public String server_name = null; public String vorgang_guid = null; public Date _erstellt = null; public Date _aenderung = null; public BigDecimal gesamte_zeit = null; public BigDecimal dauer = null; public BigDecimal prozent = null; public String regel = null; public String details = null; @Ignore() public Long PrimaryKey = null; public Long getId() { return id; } public onlinehandel_parser_details setId(Long value) { this.id = value; return this; } public Long getMandant() { return mandant; } public onlinehandel_parser_details setMandant(Long value) { this.mandant = value; return this; } public Long getDel() { return del; } public onlinehandel_parser_details setDel(Long value) { this.del = value; return this; } public Long getAbrechnungId() { return abrechnung_id; } public onlinehandel_parser_details setAbrechnungId(Long value) { this.abrechnung_id = value; return this; } public Date getVon() { return von; } public onlinehandel_parser_details setVon(Date value) { this.von = value; return this; } public Date getBis() { return bis; } public onlinehandel_parser_details setBis(Date value) { this.bis = value; return this; } public String getServerName() { return server_name; } public onlinehandel_parser_details setServerName(String value) { this.server_name = value; return this; } public String getVorgangGuid() { return vorgang_guid; } public onlinehandel_parser_details setVorgangGuid(String value) { this.vorgang_guid = value; return this; } public Date getErstellt() { return _erstellt; } public onlinehandel_parser_details setErstellt(Date value) { this._erstellt = value; return this; } public Date getAenderung() { return _aenderung; } public onlinehandel_parser_details setAenderung(Date value) { this._aenderung = value; return this; } public BigDecimal getGesamteZeit() { return gesamte_zeit; } public onlinehandel_parser_details setGesamteZeit(BigDecimal value) { this.gesamte_zeit = value; return this; } public BigDecimal getDauer() { return dauer; } public onlinehandel_parser_details setDauer(BigDecimal value) { this.dauer = value; return this; } public BigDecimal getProzent() { return prozent; } public onlinehandel_parser_details setProzent(BigDecimal value) { this.prozent = value; return this; } public String getRegel() { return regel; } public onlinehandel_parser_details setRegel(String value) { this.regel = value; return this; } public String getDetails() { return details; } public onlinehandel_parser_details setDetails(String value) { this.details = value; return this; } public Long getPrimaryKey() { return PrimaryKey; } public onlinehandel_parser_details setPrimaryKey(Long value) { this.PrimaryKey = value; return this; } } public static interface IPrimaryKey { public Long PrimaryKey = null; } public static interface IMandnr { public Long mandant = null; } public static interface IDel { public Long del = null; } public static interface ITableBase { public Long id = null; public Date _erstellt = null; public Date _aenderung = null; } }