/* Options: Date: 2024-05-15 12:45:37 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sharpscript.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: IntrospectState.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/introspect/state") public static class IntrospectState { public String page = null; public String processInfo = null; public String driveInfo = null; public String getPage() { return page; } public IntrospectState setPage(String value) { this.page = value; return this; } public String getProcessInfo() { return processInfo; } public IntrospectState setProcessInfo(String value) { this.processInfo = value; return this; } public String getDriveInfo() { return driveInfo; } public IntrospectState setDriveInfo(String value) { this.driveInfo = value; return this; } } }