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