/* Options: Date: 2025-12-06 09:20:49 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: GrowplansUsersById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class GrowplansUsersByIdResponse implements IConvertible { // @DataMember(Order=1) int? id; // @DataMember(Order=6) ResponseStatus? responseStatus; GrowplansUsersByIdResponse({this.id,this.responseStatus}); GrowplansUsersByIdResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'id': id, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "GrowplansUsersByIdResponse"; TypeContext? context = _ctx; } // @Route("/growplans_users/{Id}", "GET") // @DataContract class GrowplansUsersById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? id; GrowplansUsersById({this.id}); GrowplansUsersById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => GrowplansUsersByIdResponse(); getResponseTypeName() => "GrowplansUsersByIdResponse"; getTypeName() => "GrowplansUsersById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'GrowplansUsersByIdResponse': TypeInfo(TypeOf.Class, create:() => GrowplansUsersByIdResponse()), 'GrowplansUsersById': TypeInfo(TypeOf.Class, create:() => GrowplansUsersById()), });