/* Options: Date: 2025-12-06 14:44:10 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: GrowplansVarietiesLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/growplans_varieties", "GET") // @DataContract class GrowplansVarietiesLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=1) int? id; // @DataMember(Order=2) int? growplansBoxesId; // @DataMember(Order=3) int? cropsId; // @DataMember(Order=4) int? varietiesId; GrowplansVarietiesLookup({this.id,this.growplansBoxesId,this.cropsId,this.varietiesId}); GrowplansVarietiesLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; growplansBoxesId = json['growplansBoxesId']; cropsId = json['cropsId']; varietiesId = json['varietiesId']; return this; } Map toJson() => { 'id': id, 'growplansBoxesId': growplansBoxesId, 'cropsId': cropsId, 'varietiesId': varietiesId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GrowplansVarietiesLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'GrowplansVarietiesLookup': TypeInfo(TypeOf.Class, create:() => GrowplansVarietiesLookup()), });