/* Options: Date: 2025-08-04 04:24:59 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrowseTenderRoundAllDocumentType.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ResponseBase { ResponseStatus? ResponseStatus; ResponseBase({this.ResponseStatus}); ResponseBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ResponseBase"; TypeContext? context = _ctx; } class TenderRoundDocumentTypeSimple implements IConvertible { int? Id; int? TenderRoundId; String? DocumentType; TenderRoundDocumentTypeSimple({this.Id,this.TenderRoundId,this.DocumentType}); TenderRoundDocumentTypeSimple.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; TenderRoundId = json['TenderRoundId']; DocumentType = json['DocumentType']; return this; } Map toJson() => { 'Id': Id, 'TenderRoundId': TenderRoundId, 'DocumentType': DocumentType }; getTypeName() => "TenderRoundDocumentTypeSimple"; TypeContext? context = _ctx; } class BrowseTenderRoundAllDocumentTypeResponse extends ResponseBase implements IConvertible { List? DocumentTypes; BrowseTenderRoundAllDocumentTypeResponse({this.DocumentTypes}); BrowseTenderRoundAllDocumentTypeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); DocumentTypes = JsonConverters.fromJson(json['DocumentTypes'],'List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'DocumentTypes': JsonConverters.toJson(DocumentTypes,'List',context!) }); getTypeName() => "BrowseTenderRoundAllDocumentTypeResponse"; TypeContext? context = _ctx; } // @Route("/tender/{tenderid}/round/{tenderroundid}/documenttype", "GET") class BrowseTenderRoundAllDocumentType implements IReturn, IGet, IConvertible { int? TenderId; int? TenderRoundId; BrowseTenderRoundAllDocumentType({this.TenderId,this.TenderRoundId}); BrowseTenderRoundAllDocumentType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenderId = json['TenderId']; TenderRoundId = json['TenderRoundId']; return this; } Map toJson() => { 'TenderId': TenderId, 'TenderRoundId': TenderRoundId }; createResponse() => BrowseTenderRoundAllDocumentTypeResponse(); getResponseTypeName() => "BrowseTenderRoundAllDocumentTypeResponse"; getTypeName() => "BrowseTenderRoundAllDocumentType"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'szallitoiportal_be.veolia.hu', types: { 'ResponseBase': TypeInfo(TypeOf.AbstractClass), 'TenderRoundDocumentTypeSimple': TypeInfo(TypeOf.Class, create:() => TenderRoundDocumentTypeSimple()), 'BrowseTenderRoundAllDocumentTypeResponse': TypeInfo(TypeOf.Class, create:() => BrowseTenderRoundAllDocumentTypeResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'BrowseTenderRoundAllDocumentType': TypeInfo(TypeOf.Class, create:() => BrowseTenderRoundAllDocumentType()), });