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