/* Options: Date: 2026-09-21 22:54:37 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PBL_SetFreePosition.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/PBL_SetFreePosition/{Key}/{LCAddress}/{PixelBegin}/{PixelEnd}/{OutputNumber}") open class PBL_SetFreePosition : IReturn { /** * Key identifying a location */ @ApiMember(Description="Key identifying a location", IsRequired=true) open var Key:String? = null /** * LCAddress */ @ApiMember(Description="LCAddress", IsRequired=true) open var LCAddress:String? = null /** * Number of first pixel */ @ApiMember(Description="Number of first pixel", IsRequired=true) open var PixelBegin:Int? = null /** * Number of last pixel */ @ApiMember(Description="Number of last pixel", IsRequired=true) open var PixelEnd:Int? = null /** * Output number */ @ApiMember(Description="Output number", IsRequired=true) open var OutputNumber:Int? = null companion object { private val responseType = PBL_StandardResponse::class.java } override fun getResponseType(): Any? = PBL_SetFreePosition.responseType } open class PBL_StandardResponse { open var Success:Boolean? = null open var Error:String? = null open var Result:Object? = null open var Color:String? = null }