/* Options: Date: 2026-09-21 22:51:16 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_SetFreePosition.* //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_SetFreePosition/{Key}/{LCAddress}/{PixelBegin}/{PixelEnd}/{OutputNumber}") public static class PBL_SetFreePosition implements IReturn { /** * Key identifying a location */ @ApiMember(Description="Key identifying a location", IsRequired=true) public String Key = null; /** * LCAddress */ @ApiMember(Description="LCAddress", IsRequired=true) public String LCAddress = null; /** * Number of first pixel */ @ApiMember(Description="Number of first pixel", IsRequired=true) public Integer PixelBegin = null; /** * Number of last pixel */ @ApiMember(Description="Number of last pixel", IsRequired=true) public Integer PixelEnd = null; /** * Output number */ @ApiMember(Description="Output number", IsRequired=true) public Integer OutputNumber = null; public String getKey() { return Key; } public PBL_SetFreePosition setKey(String value) { this.Key = value; return this; } public String getLcAddress() { return LCAddress; } public PBL_SetFreePosition setLcAddress(String value) { this.LCAddress = value; return this; } public Integer getPixelBegin() { return PixelBegin; } public PBL_SetFreePosition setPixelBegin(Integer value) { this.PixelBegin = value; return this; } public Integer getPixelEnd() { return PixelEnd; } public PBL_SetFreePosition setPixelEnd(Integer value) { this.PixelEnd = value; return this; } public Integer getOutputNumber() { return OutputNumber; } public PBL_SetFreePosition setOutputNumber(Integer value) { this.OutputNumber = value; return this; } 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; } } }