/* Options: Date: 2026-06-01 15:36:01 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: SignDocumentProxy.* //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 SignDocumentProxyResponse extends BaseResponse implements IConvertible { SignDocumentProxyResponse(); SignDocumentProxyResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "SignDocumentProxyResponse"; TypeContext? context = _ctx; } // @Route("/SignDocumentProxy/") class SignDocumentProxy implements IReturn, IConvertible, IPost { String? ClientKey; String? AuthorizationID; String? UserSSN; int? DocumentId; SignDocumentProxy({this.ClientKey,this.AuthorizationID,this.UserSSN,this.DocumentId}); SignDocumentProxy.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() => SignDocumentProxyResponse(); getResponseTypeName() => "SignDocumentProxyResponse"; getTypeName() => "SignDocumentProxy"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: { 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'SignDocumentProxyResponse': TypeInfo(TypeOf.Class, create:() => SignDocumentProxyResponse()), 'SignDocumentProxy': TypeInfo(TypeOf.Class, create:() => SignDocumentProxy()), });