/* Options: Date: 2026-06-01 15:17:29 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SignAndSendRemMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class BaseResponse implements IConvertible { bool? Result; int? ErrorCode; String? ErrorMessage; BaseResponse({this.Result,this.ErrorCode,this.ErrorMessage}); BaseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = json['Result']; ErrorCode = json['ErrorCode']; ErrorMessage = json['ErrorMessage']; return this; } Map toJson() => { 'Result': Result, 'ErrorCode': ErrorCode, 'ErrorMessage': ErrorMessage }; getTypeName() => "BaseResponse"; TypeContext? context = _ctx; } class SignAndSendRemMessageResponse extends BaseResponse implements IConvertible { SignAndSendRemMessageResponse(); SignAndSendRemMessageResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "SignAndSendRemMessageResponse"; TypeContext? context = _ctx; } // @Route("/SignAndSendRemMessage") class SignAndSendRemMessage implements IReturn, IConvertible, IPost { String? AuthorizationID; String? SignerSsn; String? Pin; int? RemID; SignAndSendRemMessage({this.AuthorizationID,this.SignerSsn,this.Pin,this.RemID}); SignAndSendRemMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AuthorizationID = json['AuthorizationID']; SignerSsn = json['SignerSsn']; Pin = json['Pin']; RemID = json['RemID']; return this; } Map toJson() => { 'AuthorizationID': AuthorizationID, 'SignerSsn': SignerSsn, 'Pin': Pin, 'RemID': RemID }; createResponse() => SignAndSendRemMessageResponse(); getResponseTypeName() => "SignAndSendRemMessageResponse"; getTypeName() => "SignAndSendRemMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'remservices.eyyubiye.bel.tr', types: { 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'SignAndSendRemMessageResponse': TypeInfo(TypeOf.Class, create:() => SignAndSendRemMessageResponse()), 'SignAndSendRemMessage': TypeInfo(TypeOf.Class, create:() => SignAndSendRemMessage()), });