regis

<back to all web services

BeanstreamPaymentVerificationRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Beanstream/Payment/{uuid}/Verify
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 BeanstreamPaymentVerificationRequest implements IConvertible
{
    String? uuid;

    BeanstreamPaymentVerificationRequest({this.uuid});
    BeanstreamPaymentVerificationRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        uuid = json['uuid'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'uuid': uuid
    };

    getTypeName() => "BeanstreamPaymentVerificationRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
    'FinancePaymentResponse': TypeInfo(TypeOf.Class, create:() => FinancePaymentResponse()),
    'BeanstreamPaymentVerificationRequest': TypeInfo(TypeOf.Class, create:() => BeanstreamPaymentVerificationRequest()),
});

Dart BeanstreamPaymentVerificationRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Beanstream/Payment/{uuid}/Verify HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	uuid: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	paymentUUID: String,
	order_id: String,
	external_payment_id: 0,
	added_date: 0001-01-01,
	regent_id: 0,
	uuid: String,
	amount: 0,
	payment_type: String,
	is_pushed_to_gl: False,
	current_status: String,
	current_status_date: 0001-01-01
}