/* Options: Date: 2024-10-06 10:31:07 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: FinanceGraduationApplicationPaymentRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Finance/GraduationApplicationPayment/{uuid}/{year}", "POST") class FinanceGraduationApplicationPaymentRequest implements IReturn, IConvertible, IPost { String? uuid; bool? free_application; bool? pay_for_hood; bool? is_late; int? year; FinanceGraduationApplicationPaymentRequest({this.uuid,this.free_application,this.pay_for_hood,this.is_late,this.year}); FinanceGraduationApplicationPaymentRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; free_application = json['free_application']; pay_for_hood = json['pay_for_hood']; is_late = json['is_late']; year = json['year']; return this; } Map toJson() => { 'uuid': uuid, 'free_application': free_application, 'pay_for_hood': pay_for_hood, 'is_late': is_late, 'year': year }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "FinanceGraduationApplicationPaymentRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinanceGraduationApplicationPaymentRequest': TypeInfo(TypeOf.Class, create:() => FinanceGraduationApplicationPaymentRequest()), });