/* Options: Date: 2025-08-05 02:07:00 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: ThreadUpdateRequest.* //ExcludeTypes: //DefaultImports: */ export class ThreadResponse { public Key: string; public Type: string; public CommentsCount: number; public Title: string; public Language: string; public IsClosed: boolean; public GroupKey: string; public ItemUrl: string; public DataSource: string; public AverageRating?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/comments-api/threads", "PUT") export class ThreadUpdateRequest implements IReturn { public Key: string; public IsClosed: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ThreadUpdateRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new ThreadResponse(); } }