/* Options: Date: 2025-09-13 22:09:42 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: PersistenceItem.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class PersistenceItem implements IReturn, IConvertible, IPost { String? Key; String? ClassName; String? Value; PersistenceItem({this.Key,this.ClassName,this.Value}); PersistenceItem.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; ClassName = json['ClassName']; Value = json['Value']; return this; } Map toJson() => { 'Key': Key, 'ClassName': ClassName, 'Value': Value }; createResponse() => PersistenceItem(); getResponseTypeName() => "PersistenceItem"; getTypeName() => "PersistenceItem"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'PersistenceItem': TypeInfo(TypeOf.Class, create:() => PersistenceItem()), });