/* Options: Date: 2024-10-06 10:30:25 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: FinancePaymentLogRequest.* //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("/Finance/Payment/Log", "POST") class FinancePaymentLogRequest implements IReturn, IConvertible, IPost { String? process; String? action; String? note; String? message; String? order_id; int? external_payment_id; int? regent_id; double? amount; String? payment_type; String? customer_ip; String? name; String? email; String? phone; String? addr1; String? addr2; String? city; String? state; String? country; String? code; String? current_status; DateTime? current_status_date; bool? pushed_to_gl; DateTime? pushed_to_gl_date; FinancePaymentLogRequest({this.process,this.action,this.note,this.message,this.order_id,this.external_payment_id,this.regent_id,this.amount,this.payment_type,this.customer_ip,this.name,this.email,this.phone,this.addr1,this.addr2,this.city,this.state,this.country,this.code,this.current_status,this.current_status_date,this.pushed_to_gl,this.pushed_to_gl_date}); FinancePaymentLogRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { process = json['process']; action = json['action']; note = json['note']; message = json['message']; order_id = json['order_id']; external_payment_id = json['external_payment_id']; regent_id = json['regent_id']; amount = JsonConverters.toDouble(json['amount']); payment_type = json['payment_type']; customer_ip = json['customer_ip']; name = json['name']; email = json['email']; phone = json['phone']; addr1 = json['addr1']; addr2 = json['addr2']; city = json['city']; state = json['state']; country = json['country']; code = json['code']; current_status = json['current_status']; current_status_date = JsonConverters.fromJson(json['current_status_date'],'DateTime',context!); pushed_to_gl = json['pushed_to_gl']; pushed_to_gl_date = JsonConverters.fromJson(json['pushed_to_gl_date'],'DateTime',context!); return this; } Map toJson() => { 'process': process, 'action': action, 'note': note, 'message': message, 'order_id': order_id, 'external_payment_id': external_payment_id, 'regent_id': regent_id, 'amount': amount, 'payment_type': payment_type, 'customer_ip': customer_ip, 'name': name, 'email': email, 'phone': phone, 'addr1': addr1, 'addr2': addr2, 'city': city, 'state': state, 'country': country, 'code': code, 'current_status': current_status, 'current_status_date': JsonConverters.toJson(current_status_date,'DateTime',context!), 'pushed_to_gl': pushed_to_gl, 'pushed_to_gl_date': JsonConverters.toJson(pushed_to_gl_date,'DateTime',context!) }; createResponse() => FinancePaymentResponse(); getResponseTypeName() => "FinancePaymentResponse"; getTypeName() => "FinancePaymentLogRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'FinancePaymentResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentResponse()), 'FinancePaymentLogRequest': TypeInfo(TypeOf.Class, create:() => FinancePaymentLogRequest()), });