/* Options: Date: 2026-09-21 22:51:45 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PBL_AllOff.* //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="/PBL_AllOff") public static class PBL_AllOff implements IReturn { private static Object responseType = PBL_StandardResponse.class; public Object getResponseType() { return responseType; } } public static class PBL_StandardResponse { public Boolean Success = null; public String Error = null; public Object Result = null; public String Color = null; public Boolean isSuccess() { return Success; } public PBL_StandardResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getError() { return Error; } public PBL_StandardResponse setError(String value) { this.Error = value; return this; } public Object getResult() { return Result; } public PBL_StandardResponse setResult(Object value) { this.Result = value; return this; } public String getColor() { return Color; } public PBL_StandardResponse setColor(String value) { this.Color = value; return this; } } }