/* Options: Date: 2025-08-04 03:16:35 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: AddTenderUserTenderRoundFile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class TenderUserTenderRoundBase { int? TenderId; int? UserId; int? TenderRoundId; TenderUserTenderRoundBase({this.TenderId,this.UserId,this.TenderRoundId}); TenderUserTenderRoundBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenderId = json['TenderId']; UserId = json['UserId']; TenderRoundId = json['TenderRoundId']; return this; } Map toJson() => { 'TenderId': TenderId, 'UserId': UserId, 'TenderRoundId': TenderRoundId }; getTypeName() => "TenderUserTenderRoundBase"; TypeContext? context = _ctx; } class ModifyEntityResponse extends ResponseBase implements IConvertible { int? Id; ModifyEntityResponse({this.Id}); ModifyEntityResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id }); getTypeName() => "ModifyEntityResponse"; TypeContext? context = _ctx; } class SaveFileEntityResponse extends ModifyEntityResponse implements IConvertible { int? FileContentId; SaveFileEntityResponse({this.FileContentId}); SaveFileEntityResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); FileContentId = json['FileContentId']; return this; } Map toJson() => super.toJson()..addAll({ 'FileContentId': FileContentId }); getTypeName() => "SaveFileEntityResponse"; TypeContext? context = _ctx; } // @Route("/tender/{tenderid}/user/{userid}/round/{tenderroundid}/file", "POST") class AddTenderUserTenderRoundFile extends TenderUserTenderRoundBase implements IReturn, IPost, IConvertible { int? DocumentTypeId; AddTenderUserTenderRoundFile({this.DocumentTypeId}); AddTenderUserTenderRoundFile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); DocumentTypeId = json['DocumentTypeId']; return this; } Map toJson() => super.toJson()..addAll({ 'DocumentTypeId': DocumentTypeId }); createResponse() => SaveFileEntityResponse(); getResponseTypeName() => "SaveFileEntityResponse"; getTypeName() => "AddTenderUserTenderRoundFile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'szallitoiportal_be.veolia.hu', types: { 'TenderUserTenderRoundBase': TypeInfo(TypeOf.AbstractClass), 'ModifyEntityResponse': TypeInfo(TypeOf.Class, create:() => ModifyEntityResponse()), 'SaveFileEntityResponse': TypeInfo(TypeOf.Class, create:() => SaveFileEntityResponse()), 'AddTenderUserTenderRoundFile': TypeInfo(TypeOf.Class, create:() => AddTenderUserTenderRoundFile()), });