/* Options: Date: 2026-09-21 22:54:18 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PBL_SetFreePosition.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class PBL_StandardResponse implements IConvertible { bool? Success; String? Error; dynamic? Result; String? Color; PBL_StandardResponse({this.Success,this.Error,this.Result,this.Color}); PBL_StandardResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Error = json['Error']; Result = JsonConverters.fromJson(json['Result'],'dynamic',context!); Color = json['Color']; return this; } Map toJson() => { 'Success': Success, 'Error': Error, 'Result': JsonConverters.toJson(Result,'dynamic',context!), 'Color': Color }; getTypeName() => "PBL_StandardResponse"; TypeContext? context = _ctx; } // @Route("/PBL_SetFreePosition/{Key}/{LCAddress}/{PixelBegin}/{PixelEnd}/{OutputNumber}") class PBL_SetFreePosition implements IReturn, IConvertible, IPost { /** * Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) String? Key; /** * LCAddress */ // @ApiMember(Description="LCAddress", IsRequired=true) String? LCAddress; /** * Number of first pixel */ // @ApiMember(Description="Number of first pixel", IsRequired=true) int? PixelBegin; /** * Number of last pixel */ // @ApiMember(Description="Number of last pixel", IsRequired=true) int? PixelEnd; /** * Output number */ // @ApiMember(Description="Output number", IsRequired=true) int? OutputNumber; PBL_SetFreePosition({this.Key,this.LCAddress,this.PixelBegin,this.PixelEnd,this.OutputNumber}); PBL_SetFreePosition.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; LCAddress = json['LCAddress']; PixelBegin = json['PixelBegin']; PixelEnd = json['PixelEnd']; OutputNumber = json['OutputNumber']; return this; } Map toJson() => { 'Key': Key, 'LCAddress': LCAddress, 'PixelBegin': PixelBegin, 'PixelEnd': PixelEnd, 'OutputNumber': OutputNumber }; createResponse() => PBL_StandardResponse(); getResponseTypeName() => "PBL_StandardResponse"; getTypeName() => "PBL_SetFreePosition"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'PBL_StandardResponse': TypeInfo(TypeOf.Class, create:() => PBL_StandardResponse()), 'PBL_SetFreePosition': TypeInfo(TypeOf.Class, create:() => PBL_SetFreePosition()), });