/* Options: Date: 2026-03-16 06:33:37 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HealthCheckRequest.* //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/health-check", Verbs="GET") public static class HealthCheckRequest implements IReturn { private static Object responseType = HealthCheckResponse.class; public Object getResponseType() { return responseType; } } public static class HealthCheckResponse { public ArrayList services = null; public Date checkedAt = null; public ArrayList getServices() { return services; } public HealthCheckResponse setServices(ArrayList value) { this.services = value; return this; } public Date getCheckedAt() { return checkedAt; } public HealthCheckResponse setCheckedAt(Date value) { this.checkedAt = value; return this; } } public static class ServiceHealthResult { public String name = null; public String status = null; public Long responseTimeMs = null; public String message = null; public String getName() { return name; } public ServiceHealthResult setName(String value) { this.name = value; return this; } public String getStatus() { return status; } public ServiceHealthResult setStatus(String value) { this.status = value; return this; } public Long getResponseTimeMs() { return responseTimeMs; } public ServiceHealthResult setResponseTimeMs(Long value) { this.responseTimeMs = value; return this; } public String getMessage() { return message; } public ServiceHealthResult setMessage(String value) { this.message = value; return this; } } }