/* Options: Date: 2025-06-07 17:19:45 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //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, IGet { 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: 'soluser_recaudo.sgsas.co', types: { 'RestFiles': TypeInfo(TypeOf.Class, create:() => RestFiles()), });