/* Options: Date: 2026-04-02 04:01:59 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsBatchDeleteRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/comments-api/comments/list", "DELETE") class CommentsBatchDeleteRequest implements IConvertible, IDelete { List? Key; CommentsBatchDeleteRequest({this.Key}); CommentsBatchDeleteRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = JsonConverters.fromJson(json['Key'],'List',context!); return this; } Map toJson() => { 'Key': JsonConverters.toJson(Key,'List',context!) }; getTypeName() => "CommentsBatchDeleteRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.imglobal.com', types: { 'CommentsBatchDeleteRequest': TypeInfo(TypeOf.Class, create:() => CommentsBatchDeleteRequest()), });