/* Options: Date: 2026-06-01 15:36:29 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class DownloadDocumentResponse implements IConvertible { Uint8List? Result; bool? ServiceSuccessResult; String? ErrorMesage; DownloadDocumentResponse({this.Result,this.ServiceSuccessResult,this.ErrorMesage}); DownloadDocumentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = JsonConverters.fromJson(json['Result'],'Uint8List',context!); ServiceSuccessResult = json['ServiceSuccessResult']; ErrorMesage = json['ErrorMesage']; return this; } Map toJson() => { 'Result': JsonConverters.toJson(Result,'Uint8List',context!), 'ServiceSuccessResult': ServiceSuccessResult, 'ErrorMesage': ErrorMesage }; getTypeName() => "DownloadDocumentResponse"; TypeContext? context = _ctx; } // @Route("/DownloadDocument/{ClientKey}") class DownloadDocument implements IReturn, IConvertible, IPost { String? ClientKey; String? AuthorizationID; String? UserSSN; int? DocumentId; DownloadDocument({this.ClientKey,this.AuthorizationID,this.UserSSN,this.DocumentId}); DownloadDocument.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ClientKey = json['ClientKey']; AuthorizationID = json['AuthorizationID']; UserSSN = json['UserSSN']; DocumentId = json['DocumentId']; return this; } Map toJson() => { 'ClientKey': ClientKey, 'AuthorizationID': AuthorizationID, 'UserSSN': UserSSN, 'DocumentId': DocumentId }; createResponse() => DownloadDocumentResponse(); getResponseTypeName() => "DownloadDocumentResponse"; getTypeName() => "DownloadDocument"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: { 'DownloadDocumentResponse': TypeInfo(TypeOf.Class, create:() => DownloadDocumentResponse()), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), 'DownloadDocument': TypeInfo(TypeOf.Class, create:() => DownloadDocument()), });