/* 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 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OnlinehandelInfoBoxImportRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class OnlinehandelInfoBoxImportResponse { public error: string; public result: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/fibuscan/Onlinehandel/info-box-details/import", "GET, POST") export class OnlinehandelInfoBoxImportRequest implements IReturn { public wert: string; public vonDatum?: string; public bisDatum?: string; public aktiv: boolean; public istWebclient2Aktiv: boolean; public istWebclient3Aktiv: boolean; public istWebclientAlphaAktiv: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'OnlinehandelInfoBoxImportRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new OnlinehandelInfoBoxImportResponse(); } }