/* Options: Date: 2024-12-29 03:08:33 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: FinancePaymentsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class FinancePaymentResponse implements IConvertible { String? paymentUUID; String? order_id; int? external_payment_id; DateTime? added_date; int? regent_id; String? uuid; double? amount; String? payment_type; bool? is_pushed_to_gl; String? current_status; DateTime? current_status_date; FinancePaymentResponse({this.paymentUUID,this.order_id,this.external_payment_id,this.added_date,this.regent_id,this.uuid,this.amount,this.payment_type,this.is_pushed_to_gl,this.current_status,this.current_status_date}); FinancePaymentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { paymentUUID = json['paymentUUID']; order_id = json['order_id']; external_payment_id = json['external_payment_id']; added_date = JsonConverters.fromJson(json['added_date'],'DateTime',context!); regent_id = json['regent_id']; uuid = json['uuid']; amount = JsonConverters.toDouble(json['amount']); payment_type = json['payment_type']; is_pushed_to_gl = json['is_pushed_to_gl']; current_status = json['current_status']; current_status_date = JsonConverters.fromJson(json['current_status_date'],'DateTime',context!); return this; } Map toJson() => { 'paymentUUID': paymentUUID, 'order_id': order_id, 'external_payment_id': external_payment_id, 'added_date': JsonConverters.toJson(added_date,'DateTime',context!), 'regent_id': regent_id, 'uuid': uuid, 'amount': amount, 'payment_type': payment_type, 'is_pushed_to_gl': is_pushed_to_gl, 'current_status': current_status, 'current_status_date': JsonConverters.toJson(current_status_date,'DateTime',context!) }; getTypeName() => "FinancePaymentResponse"; TypeContext? context = _ctx; } class FinancePaymentsResponse implements IConvertible { ResponseStatus? responseStatus; List? payments; DateTime? from_date; DateTime? to_date; FinancePaymentsResponse({this.responseStatus,this.payments,this.from_date,this.to_date}); FinancePaymentsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); payments = JsonConverters.fromJson(json['payments'],'List',context!); from_date = JsonConverters.fromJson(json['from_date'],'DateTime',context!); to_date = JsonConverters.fromJson(json['to_date'],'DateTime',context!); return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!), 'payments': JsonConverters.toJson(payments,'List',context!), 'from_date': JsonConverters.toJson(from_date,'DateTime',context!), 'to_date': JsonConverters.toJson(to_date,'DateTime',context!) }; getTypeName() => "FinancePaymentsResponse"; TypeContext? context = _ctx; } // @Route("/Finance/Payments", "POST") class FinancePaymentsRequest implements IReturn, IConvertible, IPost { DateTime? from_date; DateTime? to_date; FinancePaymentsRequest({this.from_date,this.to_date}); FinancePaymentsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { from_date = JsonConverters.fromJson(json['from_date'],'DateTime',context!); to_date = JsonConverters.fromJson(json['to_date'],'DateTime',context!); return this; } Map toJson() => { 'from_date': JsonConverters.toJson(from_date,'DateTime',context!), 'to_date': JsonConverters.toJson(to_date,'DateTime',context!) }; createResponse() => FinancePaymentsResponse(); getResponseTypeName() => "FinancePaymentsResponse"; getTypeName() => "FinancePaymentsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinancePaymentResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentResponse()), 'FinancePaymentsResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentsResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'FinancePaymentsRequest': TypeInfo(TypeOf.Class, create:() => FinancePaymentsRequest()), });