/* Options: Date: 2025-06-13 07:11:52 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: GetCitizenReportFileRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/citizen/getreportfile/{FileId}") class GetCitizenReportFileRQ implements IReturn, IConvertible { String? FileId; GetCitizenReportFileRQ({this.FileId}); GetCitizenReportFileRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { FileId = json['FileId']; return this; } Map toJson() => { 'FileId': FileId }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetCitizenReportFileRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws.jimsnwa.com', types: { 'GetCitizenReportFileRQ': TypeInfo(TypeOf.Class, create:() => GetCitizenReportFileRQ()), });