/* Options: Date: 2025-05-06 14:36:42 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LiveBeatRequest.* //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="/system/LiveBeat", Verbs="GET POST") public static class LiveBeatRequest implements IReturn { public String nameOfThread = null; public String getNameOfThread() { return nameOfThread; } public LiveBeatRequest setNameOfThread(String value) { this.nameOfThread = value; return this; } private static Object responseType = LiveBeatResult.class; public Object getResponseType() { return responseType; } } public static class LiveBeatResult { public Date utcCachedLastBeat = null; public Date getUtcCachedLastBeat() { return utcCachedLastBeat; } public LiveBeatResult setUtcCachedLastBeat(Date value) { this.utcCachedLastBeat = value; return this; } } }