/* Options: Date: 2026-04-02 03:41:29 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsBatchUpdateRequest.* //ExcludeTypes: //DefaultImports: */ export class CollectionResponse { public TotalCount: number; public Items: CommentResponse[]; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/comments-api/comments/list", "PUT") export class CommentsBatchUpdateRequest implements IReturn> { public Key: string[]; public Status: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CommentsBatchUpdateRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new CollectionResponse(); } }