/* Options: Date: 2025-06-13 07:05:41 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RestFiles.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/restfiles/files") // @Route("/restfiles/files/{Path*}") class RestFiles implements IConvertible { String? Path; String? TextContents; bool? ForDownload; RestFiles({this.Path,this.TextContents,this.ForDownload}); RestFiles.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Path = json['Path']; TextContents = json['TextContents']; ForDownload = json['ForDownload']; return this; } Map toJson() => { 'Path': Path, 'TextContents': TextContents, 'ForDownload': ForDownload }; getTypeName() => "RestFiles"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws.jimsnwa.com', types: { 'RestFiles': TypeInfo(TypeOf.Class, create:() => RestFiles()), });