/* Options: Date: 2025-08-05 01:57:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: NotificationStatusRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/comments-api/notifications", Verbs="GET") public static class NotificationStatusRequest implements IReturn { public String ThreadKey = null; public String getThreadKey() { return ThreadKey; } public NotificationStatusRequest setThreadKey(String value) { this.ThreadKey = value; return this; } private static Object responseType = NotificationStatusResponse.class; public Object getResponseType() { return responseType; } } public static class NotificationStatusResponse { public Boolean IsSubscribed = null; public Boolean getIsSubscribed() { return IsSubscribed; } public NotificationStatusResponse setIsSubscribed(Boolean value) { this.IsSubscribed = value; return this; } } }