/* Options: Date: 2026-04-02 03:50:05 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: AuthorReviewedGetRequest.* //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="/reviews-api", Verbs="GET") public static class AuthorReviewedGetRequest implements IReturn { public String ThreadKey = null; public String getThreadKey() { return ThreadKey; } public AuthorReviewedGetRequest setThreadKey(String value) { this.ThreadKey = value; return this; } private static Object responseType = AuthorReviewedViewModel.class; public Object getResponseType() { return responseType; } } public static class AuthorReviewedViewModel { public Boolean AuthorAlreadyReviewed = null; public Boolean isAuthorAlreadyReviewed() { return AuthorAlreadyReviewed; } public AuthorReviewedViewModel setAuthorAlreadyReviewed(Boolean value) { this.AuthorAlreadyReviewed = value; return this; } } }