Required permission: | CreatePayments |
POST | /Finance/Payment/Log |
---|
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<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> 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<String, dynamic> 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 FinancePaymentLogRequest implements IConvertible
{
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<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> 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<String, dynamic> 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!)
};
getTypeName() => "FinancePaymentLogRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'FinancePaymentResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentResponse()),
'FinancePaymentLogRequest': TypeInfo(TypeOf.Class, create:() => FinancePaymentLogRequest()),
});
Dart FinancePaymentLogRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Finance/Payment/Log HTTP/1.1
Host: data.regent-college.edu
Accept: application/json
Content-Type: application/json
Content-Length: length
{"process":"String","action":"String","note":"String","message":"String","order_id":"String","external_payment_id":0,"regent_id":0,"amount":0,"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":"String","current_status_date":"0001-01-01T00:00:00.0000000","pushed_to_gl":false,"pushed_to_gl_date":"0001-01-01T00:00:00.0000000"}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"paymentUUID":"String","order_id":"String","external_payment_id":0,"added_date":"0001-01-01T00:00:00.0000000","regent_id":0,"uuid":"String","amount":0,"payment_type":"String","is_pushed_to_gl":false,"current_status":"String","current_status_date":"0001-01-01T00:00:00.0000000"}