/* Options: Date: 2026-05-09 18:00:16 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: SupportfallErstellenRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class OnlinehandelModel { public Zahlbetrag: number; public Datum?: string; public Treffertyp: string; public OrderID: string; public lstTreffer: OnlinehandelModel[]; public ID: string; public ID1: string; public Buchungstext: string; public Zahlsystem: string; public Sonstiges: string; public Treffer: string; public ÜbrigeDaten: string; public hasTreffer: boolean; public Geparsed_guid: string; public Fileguid: string; public OnlinehandelDateiID?: number; public OnlinehandelTalkID?: number; public DateiName: string; public ZeilNummer?: number; public Dateiname: string; public dateitype: string; public DBDateitype?: number; public LetzteDateiId?: number; public TrefferStelle?: number; public TrefferInfo: string; public Volltext: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupportfallErstellenResponse { public onlineHandelModel: OnlinehandelModel[]; public result: boolean; public errors: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/fibuscan/Onlinehandel/SupportfallErstellen", "GET, POST") export class SupportfallErstellenRequest implements IReturn { public guid: string; public ZeileIndexes: number[]; public FileGuids: string[]; public SelectedTreffertyp: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SupportfallErstellenRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new SupportfallErstellenResponse(); } }