/* Options: Date: 2026-06-01 15:37:05 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: GetCertificate.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class DabCertificateClass implements IConvertible { String? SignerName; String? SignerUserSSN; String? SignerProvider; String? SignerCertStartDate; String? SignerCertEndDate; String? SignerCertBase64; DabCertificateClass({this.SignerName,this.SignerUserSSN,this.SignerProvider,this.SignerCertStartDate,this.SignerCertEndDate,this.SignerCertBase64}); DabCertificateClass.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SignerName = json['SignerName']; SignerUserSSN = json['SignerUserSSN']; SignerProvider = json['SignerProvider']; SignerCertStartDate = json['SignerCertStartDate']; SignerCertEndDate = json['SignerCertEndDate']; SignerCertBase64 = json['SignerCertBase64']; return this; } Map toJson() => { 'SignerName': SignerName, 'SignerUserSSN': SignerUserSSN, 'SignerProvider': SignerProvider, 'SignerCertStartDate': SignerCertStartDate, 'SignerCertEndDate': SignerCertEndDate, 'SignerCertBase64': SignerCertBase64 }; getTypeName() => "DabCertificateClass"; TypeContext? context = _ctx; } class GetCertificateResponse implements IConvertible { DabCertificateClass? Result; bool? ServiceSuccessResult; String? ErrorMesage; GetCertificateResponse({this.Result,this.ServiceSuccessResult,this.ErrorMesage}); GetCertificateResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Result = JsonConverters.fromJson(json['Result'],'DabCertificateClass',context!); ServiceSuccessResult = json['ServiceSuccessResult']; ErrorMesage = json['ErrorMesage']; return this; } Map toJson() => { 'Result': JsonConverters.toJson(Result,'DabCertificateClass',context!), 'ServiceSuccessResult': ServiceSuccessResult, 'ErrorMesage': ErrorMesage }; getTypeName() => "GetCertificateResponse"; TypeContext? context = _ctx; } // @Route("/GetCertificate/{ClientKey}") class GetCertificate implements IReturn, IConvertible, IPost { String? ClientKey; String? AuthorizationID; String? UserSSN; GetCertificate({this.ClientKey,this.AuthorizationID,this.UserSSN}); GetCertificate.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ClientKey = json['ClientKey']; AuthorizationID = json['AuthorizationID']; UserSSN = json['UserSSN']; return this; } Map toJson() => { 'ClientKey': ClientKey, 'AuthorizationID': AuthorizationID, 'UserSSN': UserSSN }; createResponse() => GetCertificateResponse(); getResponseTypeName() => "GetCertificateResponse"; getTypeName() => "GetCertificate"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'imzagerservices.eyyubiye.bel.tr', types: { 'DabCertificateClass': TypeInfo(TypeOf.Class, create:() => DabCertificateClass()), 'GetCertificateResponse': TypeInfo(TypeOf.Class, create:() => GetCertificateResponse()), 'GetCertificate': TypeInfo(TypeOf.Class, create:() => GetCertificate()), });