/* 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: SignDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SignDocumentResponse implements IConvertible { bool? Result; bool? ServiceSuccessResult; String? ErrorMesage; SignDocumentResponse({this.Result,this.ServiceSuccessResult,this.ErrorMesage}); SignDocumentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = json['Result']; ServiceSuccessResult = json['ServiceSuccessResult']; ErrorMesage = json['ErrorMesage']; return this; } Map toJson() => { 'Result': Result, 'ServiceSuccessResult': ServiceSuccessResult, 'ErrorMesage': ErrorMesage }; getTypeName() => "SignDocumentResponse"; TypeContext? context = _ctx; } // @Route("/SignDocument/{ClientKey}") class SignDocument implements IReturn, IConvertible, IPost { String? ClientKey; String? AuthorizationID; String? UserSSN; int? DocumentId; String? SignerSSN; String? SignerEMail; String? SignMessage; SignDocument({this.ClientKey,this.AuthorizationID,this.UserSSN,this.DocumentId,this.SignerSSN,this.SignerEMail,this.SignMessage}); SignDocument.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ClientKey = json['ClientKey']; AuthorizationID = json['AuthorizationID']; UserSSN = json['UserSSN']; DocumentId = json['DocumentId']; SignerSSN = json['SignerSSN']; SignerEMail = json['SignerEMail']; SignMessage = json['SignMessage']; return this; } Map toJson() => { 'ClientKey': ClientKey, 'AuthorizationID': AuthorizationID, 'UserSSN': UserSSN, 'DocumentId': DocumentId, 'SignerSSN': SignerSSN, 'SignerEMail': SignerEMail, 'SignMessage': SignMessage }; createResponse() => SignDocumentResponse(); getResponseTypeName() => "SignDocumentResponse"; getTypeName() => "SignDocument"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: { 'SignDocumentResponse': TypeInfo(TypeOf.Class, create:() => SignDocumentResponse()), 'SignDocument': TypeInfo(TypeOf.Class, create:() => SignDocument()), });