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