/* Options: Date: 2024-12-29 02:37:37 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: BeanstreamPaymentVerificationRequest.* //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; } // @Route("/Beanstream/Payment/{uuid}/Verify", "POST") class BeanstreamPaymentVerificationRequest implements IReturn, IConvertible, IPost { String? uuid; BeanstreamPaymentVerificationRequest({this.uuid}); BeanstreamPaymentVerificationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { uuid = json['uuid']; return this; } Map toJson() => { 'uuid': uuid }; createResponse() => FinancePaymentResponse(); getResponseTypeName() => "FinancePaymentResponse"; getTypeName() => "BeanstreamPaymentVerificationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinancePaymentResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentResponse()), 'BeanstreamPaymentVerificationRequest': TypeInfo(TypeOf.Class, create:() => BeanstreamPaymentVerificationRequest()), });