/* Options: Date: 2026-06-01 15:20:28 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: 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; AuthenticationResponse({this.Result}); AuthenticationResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = json['Result']; return this; } Map toJson() => { 'Result': Result }; 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: 'remservices.eyyubiye.bel.tr', types: { 'AuthenticationResponse': TypeInfo(TypeOf.Class, create:() => AuthenticationResponse()), 'Authentication': TypeInfo(TypeOf.Class, create:() => Authentication()), });