/* Options: Date: 2025-09-13 22:23:46 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetFavorite.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SetFavorite implements IReturnVoid, IConvertible, IPost { String? DocumentID; bool? Favorite; SetFavorite({this.DocumentID,this.Favorite}); SetFavorite.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; Favorite = json['Favorite']; return this; } Map toJson() => { 'DocumentID': DocumentID, 'Favorite': Favorite }; createResponse() {} getTypeName() => "SetFavorite"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'SetFavorite': TypeInfo(TypeOf.Class, create:() => SetFavorite()), });