/* Options: Date: 2026-09-10 05:45:56 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RateBalanceReportRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/registration/rate-balance-report", "POST") class RateBalanceReportRequest implements IReturn>, IConvertible, IPost { int? year; String? rate_code; String? authorizing_uuid; RateBalanceReportRequest({this.year,this.rate_code,this.authorizing_uuid}); RateBalanceReportRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { year = json['year']; rate_code = json['rate_code']; authorizing_uuid = json['authorizing_uuid']; return this; } Map toJson() => { 'year': year, 'rate_code': rate_code, 'authorizing_uuid': authorizing_uuid }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "RateBalanceReportRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'RateBalanceReportRequest': TypeInfo(TypeOf.Class, create:() => RateBalanceReportRequest()), });