/* Options: Date: 2026-05-09 17:13:34 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: OnlinehandelNeuerTypAnlegenRequest.* //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/NeuerTypAnlegen", Verbs="GET, POST") public static class OnlinehandelNeuerTypAnlegenRequest implements IReturn { public String bezeichnung = null; public Integer suchfeld1 = null; public String suchfeld1_text = null; public Integer suchfeld2 = null; public String suchfeld2_text = null; public Long del = null; public Long parent_id = null; public Boolean soll_parsen = null; public String guid = null; public String getBezeichnung() { return bezeichnung; } public OnlinehandelNeuerTypAnlegenRequest setBezeichnung(String value) { this.bezeichnung = value; return this; } public Integer getSuchfeld1() { return suchfeld1; } public OnlinehandelNeuerTypAnlegenRequest setSuchfeld1(Integer value) { this.suchfeld1 = value; return this; } public String getSuchfeld1Text() { return suchfeld1_text; } public OnlinehandelNeuerTypAnlegenRequest setSuchfeld1Text(String value) { this.suchfeld1_text = value; return this; } public Integer getSuchfeld2() { return suchfeld2; } public OnlinehandelNeuerTypAnlegenRequest setSuchfeld2(Integer value) { this.suchfeld2 = value; return this; } public String getSuchfeld2Text() { return suchfeld2_text; } public OnlinehandelNeuerTypAnlegenRequest setSuchfeld2Text(String value) { this.suchfeld2_text = value; return this; } public Long getDel() { return del; } public OnlinehandelNeuerTypAnlegenRequest setDel(Long value) { this.del = value; return this; } public Long getParentId() { return parent_id; } public OnlinehandelNeuerTypAnlegenRequest setParentId(Long value) { this.parent_id = value; return this; } public Boolean isSollParsen() { return soll_parsen; } public OnlinehandelNeuerTypAnlegenRequest setSollParsen(Boolean value) { this.soll_parsen = value; return this; } public String getGuid() { return guid; } public OnlinehandelNeuerTypAnlegenRequest setGuid(String value) { this.guid = value; return this; } private static Object responseType = OnlinehandelNeuerTypAnlegenResponse.class; public Object getResponseType() { return responseType; } } public static class OnlinehandelNeuerTypAnlegenResponse { public String errorMSG = null; public String getErrorMSG() { return errorMSG; } public OnlinehandelNeuerTypAnlegenResponse setErrorMSG(String value) { this.errorMSG = value; return this; } } }