/* Options: Date: 2026-06-01 14:58:30 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CommentsBatchDeleteRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/comments-api/comments/list", Verbs="DELETE") public static class CommentsBatchDeleteRequest { public ArrayList Key = null; public ArrayList getKey() { return Key; } public CommentsBatchDeleteRequest setKey(ArrayList value) { this.Key = value; return this; } } }