/* Options: Date: 2024-07-03 13:10:51 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ApiVersionQuery.* //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="/version", Verbs="GET") public static class ApiVersionQuery implements IReturn { private static Object responseType = ApiVersionQueryResponse.class; public Object getResponseType() { return responseType; } } public static class ApiVersionQueryResponse { /** * Timestamp when this API was built */ public Date BuildTime = null; /** * The revision id from which the API was built */ public String Sha = null; /** * Full version information regarding the current running assemblies of the api */ public String InformationalVersion = null; /** * The semantic version number of the current running api version, see www.semver.org for more information */ public String SemVer = null; public ResponseStatus ResponseStatus = null; public Date getBuildTime() { return BuildTime; } public ApiVersionQueryResponse setBuildTime(Date value) { this.BuildTime = value; return this; } public String getSha() { return Sha; } public ApiVersionQueryResponse setSha(String value) { this.Sha = value; return this; } public String getInformationalVersion() { return InformationalVersion; } public ApiVersionQueryResponse setInformationalVersion(String value) { this.InformationalVersion = value; return this; } public String getSemVer() { return SemVer; } public ApiVersionQueryResponse setSemVer(String value) { this.SemVer = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ApiVersionQueryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }