/* Options: Date: 2025-05-24 20:49:31 Version: 6.41 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://netcom.poslovnisoftver.rs //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DobaviKategorije3.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class IdNaziv implements IConvertible { String? id; String? naziv; IdNaziv({this.id,this.naziv}); IdNaziv.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; naziv = json['naziv']; return this; } Map toJson() => { 'id': id, 'naziv': naziv }; getTypeName() => "IdNaziv"; TypeContext? context = _ctx; } class DobaviKategorije3Result implements IConvertible { List? kategorije3; ResponseStatus? responseStatus; DobaviKategorije3Result({this.kategorije3,this.responseStatus}); DobaviKategorije3Result.fromJson(Map json) { fromMap(json); } fromMap(Map json) { kategorije3 = JsonConverters.fromJson(json['kategorije3'],'List',context!); responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'kategorije3': JsonConverters.toJson(kategorije3,'List',context!), 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "DobaviKategorije3Result"; TypeContext? context = _ctx; } // @Route("/kategorije3", "GET") class DobaviKategorije3 implements IReturn, IGet, IConvertible { DobaviKategorije3(); DobaviKategorije3.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => DobaviKategorije3Result(); getResponseTypeName() => "DobaviKategorije3Result"; getTypeName() => "DobaviKategorije3"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'netcom.poslovnisoftver.rs', types: { 'IdNaziv': TypeInfo(TypeOf.Class, create:() => IdNaziv()), 'DobaviKategorije3Result': TypeInfo(TypeOf.Class, create:() => DobaviKategorije3Result()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'DobaviKategorije3': TypeInfo(TypeOf.Class, create:() => DobaviKategorije3()), });