/* Options: Date: 2026-06-01 15:01: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: CommentsBatchUpdateRequest.* //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="PUT") public static class CommentsBatchUpdateRequest implements IReturn> { public ArrayList Key = null; public String Status = null; public ArrayList getKey() { return Key; } public CommentsBatchUpdateRequest setKey(ArrayList value) { this.Key = value; return this; } public String getStatus() { return Status; } public CommentsBatchUpdateRequest setStatus(String value) { this.Status = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class CollectionResponse { public Integer TotalCount = null; public ArrayList Items = null; public Integer getTotalCount() { return TotalCount; } public CollectionResponse setTotalCount(Integer value) { this.TotalCount = value; return this; } public ArrayList getItems() { return Items; } public CollectionResponse setItems(ArrayList value) { this.Items = value; return this; } } }