/* Options: Date: 2026-05-09 17:13:11 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: OnlinehandelInfoBoxAktivRequest.* //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/infobox/aktiv", Verbs="GET, POST") public static class OnlinehandelInfoBoxAktivRequest implements IReturn { public Boolean aktiv = null; public Boolean isAktiv() { return aktiv; } public OnlinehandelInfoBoxAktivRequest setAktiv(Boolean value) { this.aktiv = value; return this; } private static Object responseType = OnlinehandelInfoBoxAktivResponse.class; public Object getResponseType() { return responseType; } } public static class OnlinehandelInfoBoxAktivResponse { public String error = null; public Boolean result = null; public String getError() { return error; } public OnlinehandelInfoBoxAktivResponse setError(String value) { this.error = value; return this; } public Boolean isResult() { return result; } public OnlinehandelInfoBoxAktivResponse setResult(Boolean value) { this.result = value; return this; } } }