/* Options: Date: 2025-07-04 10:05:01 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: GetDocumentFileName.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/documents/{DocumentID}/filename", "GET") class GetDocumentFileName implements IReturn, IConvertible, IGet { String? DocumentID; bool? IncludeExtension; bool? IncludeTitle; GetDocumentFileName({this.DocumentID,this.IncludeExtension,this.IncludeTitle}); GetDocumentFileName.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; IncludeExtension = json['IncludeExtension']; IncludeTitle = json['IncludeTitle']; return this; } Map toJson() => { 'DocumentID': DocumentID, 'IncludeExtension': IncludeExtension, 'IncludeTitle': IncludeTitle }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "GetDocumentFileName"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetDocumentFileName': TypeInfo(TypeOf.Class, create:() => GetDocumentFileName()), });