BokaMera.API.Host

<back to all web services

StripeCheckoutIpnCallBackRequest

The following routes are available for this service:
POST/payment/stripe/v1/ipncallbackWebhook 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;
    String? PaymentIntentId;
    String? InternalReferenceId;
    String? ArticleTypeId;
    String? CompanyId;

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

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

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

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

TypeContext _ctx = TypeContext(library: 'api.bookmore.com', 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 .other suffix or ?format=other

HTTP + OTHER

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

POST /payment/stripe/v1/ipncallback HTTP/1.1 
Host: api.bookmore.com 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"EventType":"String","SessionId":"String","PaymentIntentId":"String","InternalReferenceId":"String","ArticleTypeId":"String","CompanyId":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

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