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