/* Options: Date: 2025-07-04 10:27:58 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: SetRecentlyOpenedDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/me/documents/recent", "PUT") class SetRecentlyOpenedDocument implements IReturnVoid, IConvertible, IPut { String? DocumentID; String? ProgCode; SetRecentlyOpenedDocument({this.DocumentID,this.ProgCode}); SetRecentlyOpenedDocument.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; ProgCode = json['ProgCode']; return this; } Map toJson() => { 'DocumentID': DocumentID, 'ProgCode': ProgCode }; createResponse() {} getTypeName() => "SetRecentlyOpenedDocument"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'SetRecentlyOpenedDocument': TypeInfo(TypeOf.Class, create:() => SetRecentlyOpenedDocument()), });