/* Options: Date: 2026-09-21 22:53:46 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDownloadFileList.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/GetDownloadFileList/{Pattern}") class GetDownloadFileList implements IConvertible, IPost { /** * Pattern of files */ // @ApiMember(Description="Pattern of files") String? Pattern; GetDownloadFileList({this.Pattern}); GetDownloadFileList.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Pattern = json['Pattern']; return this; } Map toJson() => { 'Pattern': Pattern }; getTypeName() => "GetDownloadFileList"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'GetDownloadFileList': TypeInfo(TypeOf.Class, create:() => GetDownloadFileList()), });