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