/* Options: Date: 2026-01-12 04:37:14 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://p4.smartdatasolutions.eu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Status.* //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="/status") public static class Status extends Generic implements IReturn, IGet { private static Object responseType = StatusResponse.class; public Object getResponseType() { return responseType; } } public static class StatusResponse { public String result = null; public String getResult() { return result; } public StatusResponse setResult(String value) { this.result = value; return this; } } public static class Generic { /** * Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY */ @ApiMember(DataType="String", Description="Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY", IsRequired=true, Name="ApiKey") public String apiKey = null; public String getApiKey() { return apiKey; } public Generic setApiKey(String value) { this.apiKey = value; return this; } } }