digitaluapi

<back to all web services

PaymentActionsAdd

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
POST/payment_actions
import 'package:servicestack/servicestack.dart';

class PaymentActionsAddResponse implements IConvertible
{
    // @DataMember(Order=2)
    int? TenantsId;

    // @DataMember(Order=3)
    int? ActionsId;

    // @DataMember(Order=5)
    ResponseStatus? ResponseStatus;

    PaymentActionsAddResponse({this.TenantsId,this.ActionsId,this.ResponseStatus});
    PaymentActionsAddResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        TenantsId = json['TenantsId'];
        ActionsId = json['ActionsId'];
        ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'TenantsId': TenantsId,
        'ActionsId': ActionsId,
        'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!)
    };

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

// @DataContract
class PaymentActionsAdd implements IConvertible
{
    // @DataMember(Order=2)
    // @Validate(Validator="NotNull")
    int? TenantsId;

    // @DataMember(Order=3)
    // @Validate(Validator="NotNull")
    int? ActionsId;

    PaymentActionsAdd({this.TenantsId,this.ActionsId});
    PaymentActionsAdd.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
    'PaymentActionsAddResponse': TypeInfo(TypeOf.Class, create:() => PaymentActionsAddResponse()),
    'PaymentActionsAdd': TypeInfo(TypeOf.Class, create:() => PaymentActionsAdd()),
});

Dart PaymentActionsAdd 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.

POST /payment_actions HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"TenantsId":0,"ActionsId":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"TenantsId":0,"ActionsId":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}