/* Options: Date: 2025-12-06 12:32:35 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CropsCylindersLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/crops_cylinders", "GET") // @DataContract class CropsCylindersLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? tenantsId; // @DataMember(Order=3) int? zonesId; // @DataMember(Order=4) int? cropsId; // @DataMember(Order=5) String? thickness; // @DataMember(Order=6) String? colour; // @DataMember(Order=7) String? imageUrl; CropsCylindersLookup({this.tenantsId,this.zonesId,this.cropsId,this.thickness,this.colour,this.imageUrl}); CropsCylindersLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { tenantsId = json['tenantsId']; zonesId = json['zonesId']; cropsId = json['cropsId']; thickness = json['thickness']; colour = json['colour']; imageUrl = json['imageUrl']; return this; } Map toJson() => { 'tenantsId': tenantsId, 'zonesId': zonesId, 'cropsId': cropsId, 'thickness': thickness, 'colour': colour, 'imageUrl': imageUrl }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "CropsCylindersLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'CropsCylindersLookup': TypeInfo(TypeOf.Class, create:() => CropsCylindersLookup()), });