/* Options: Date: 2025-08-05 01:54:20 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsCountGetRequest.* //ExcludeTypes: //DefaultImports: */ export class CollectionResponse { public TotalCount: number; public Items: CommentsCountResponse[]; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/comments-api/comments/count", "GET") export class CommentsCountGetRequest implements IReturn> { public ThreadKey: string[]; public Status: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CommentsCountGetRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new CollectionResponse(); } }