/* Options: Date: 2026-03-31 18:49:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMobileViews.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetMobileViews implements IReturn>, IConvertible, IPost { bool? IncludeExplorers; GetMobileViews({this.IncludeExplorers}); GetMobileViews.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IncludeExplorers = json['IncludeExplorers']; return this; } Map toJson() => { 'IncludeExplorers': IncludeExplorers }; createResponse() => ObservableCollection(); getResponseTypeName() => "ObservableCollection"; getTypeName() => "GetMobileViews"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_dogw.klokgroep.nl', types: { 'ObservableCollection': TypeInfo(TypeOf.Class, create:() => ObservableCollection()), 'MobileView': TypeInfo(TypeOf.Class, create:() => MobileView()), 'GetMobileViews': TypeInfo(TypeOf.Class, create:() => GetMobileViews()), });