BokaMera.API.Host

<back to all web services

StripeCheckoutIpnCallBackRequest

The following routes are available for this service:
POST/payment/stripe/v1/webhookWebhook for Stripe checkout 1.0Webhook for Stripe checkout 1.0
import 'package:servicestack/servicestack.dart';

class IpnCallBackResponse implements IConvertible
{
    String? Message;
    bool? Success;

    IpnCallBackResponse({this.Message,this.Success});
    IpnCallBackResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

class StripeCheckoutIpnCallBackRequest implements IConvertible
{
    String? EventType;
    String? SessionId;

    StripeCheckoutIpnCallBackRequest({this.EventType,this.SessionId});
    StripeCheckoutIpnCallBackRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
    'IpnCallBackResponse': TypeInfo(TypeOf.Class, create:() => IpnCallBackResponse()),
    'StripeCheckoutIpnCallBackRequest': TypeInfo(TypeOf.Class, create:() => StripeCheckoutIpnCallBackRequest()),
});

Dart StripeCheckoutIpnCallBackRequest DTOs

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

HTTP + CSV

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

POST /payment/stripe/v1/webhook HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"EventType":"String","SessionId":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Message":"String","Success":false}