/* Options: Date: 2026-06-01 15:36:02 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: SignDocumentProxyContent.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class BaseResponse implements IConvertible { bool? ServiceSuccessResult; String? ErrorMesage; BaseResponse({this.ServiceSuccessResult,this.ErrorMesage}); BaseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ServiceSuccessResult = json['ServiceSuccessResult']; ErrorMesage = json['ErrorMesage']; return this; } Map toJson() => { 'ServiceSuccessResult': ServiceSuccessResult, 'ErrorMesage': ErrorMesage }; getTypeName() => "BaseResponse"; TypeContext? context = _ctx; } class SignDocumentProxyContentResponse extends BaseResponse implements IConvertible { Uint8List? SignedDocumentContent; SignDocumentProxyContentResponse({this.SignedDocumentContent}); SignDocumentProxyContentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); SignedDocumentContent = JsonConverters.fromJson(json['SignedDocumentContent'],'Uint8List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'SignedDocumentContent': JsonConverters.toJson(SignedDocumentContent,'Uint8List',context!) }); getTypeName() => "SignDocumentProxyContentResponse"; TypeContext? context = _ctx; } // @Route("/SignDocumentProxyContent/") class SignDocumentProxyContent implements IReturn, IConvertible, IPost { String? ClientKey; String? AuthorizationID; String? UserSSN; Uint8List? DocumentContent; SignDocumentProxyContent({this.ClientKey,this.AuthorizationID,this.UserSSN,this.DocumentContent}); SignDocumentProxyContent.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ClientKey = json['ClientKey']; AuthorizationID = json['AuthorizationID']; UserSSN = json['UserSSN']; DocumentContent = JsonConverters.fromJson(json['DocumentContent'],'Uint8List',context!); return this; } Map toJson() => { 'ClientKey': ClientKey, 'AuthorizationID': AuthorizationID, 'UserSSN': UserSSN, 'DocumentContent': JsonConverters.toJson(DocumentContent,'Uint8List',context!) }; createResponse() => SignDocumentProxyContentResponse(); getResponseTypeName() => "SignDocumentProxyContentResponse"; getTypeName() => "SignDocumentProxyContent"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: { 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'SignDocumentProxyContentResponse': TypeInfo(TypeOf.Class, create:() => SignDocumentProxyContentResponse()), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), 'SignDocumentProxyContent': TypeInfo(TypeOf.Class, create:() => SignDocumentProxyContent()), });