BokaMera.API.Host

<back to all web services

StripeConnectAccountRequest

The following routes are available for this service:
GET/payment/stripe/v1/account/connectCreate an account for company.Create an account for company.
import 'package:servicestack/servicestack.dart';

class StripeConnectAccountRes implements IConvertible
{
    String? Url;

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

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

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

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

class StripeConnectAccountRequest implements ICompany, IConvertible
{
    /**
    * The company id.
    */
    // @ApiMember(Description="The company id.")
    String? CompanyId;

    /**
    * Uri to which stripe will redirect back to after authorization.
    */
    // @ApiMember(Description="Uri to which stripe will redirect back to after authorization.", IsRequired=true)
    String? RedirectUri;

    StripeConnectAccountRequest({this.CompanyId,this.RedirectUri});
    StripeConnectAccountRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: <String, TypeInfo> {
    'StripeConnectAccountRes': TypeInfo(TypeOf.Class, create:() => StripeConnectAccountRes()),
    'StripeConnectAccountRequest': TypeInfo(TypeOf.Class, create:() => StripeConnectAccountRequest()),
});

Dart StripeConnectAccountRequest 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

HTTP + JSON

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

GET /payment/stripe/v1/account/connect HTTP/1.1 
Host: api.bokamera.se 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"Url":"String"}