/* Options: Date: 2026-04-02 03:56:58 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: AuthorReviewedGetRequest.* //ExcludeTypes: //DefaultImports: */ export class AuthorReviewedViewModel { public AuthorAlreadyReviewed: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/reviews-api", "GET") export class AuthorReviewedGetRequest implements IReturn { public ThreadKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AuthorReviewedGetRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new AuthorReviewedViewModel(); } }