| POST | /CoreBanking/CancelTransfer |
|---|
import 'package:servicestack/servicestack.dart';
// @DataContract
abstract class ServiceRequestBase implements IHasVersion
{
ServiceRequestBase();
ServiceRequestBase.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "ServiceRequestBase";
TypeContext? context = _ctx;
}
// @DataContract
class ServiceResponseBase implements IConvertible
{
/**
* Identifies whether the request executed successfully, however does not indicated requested data was found
*/
// @DataMember
// @ApiMember(Description="Identifies whether the request executed successfully, however does not indicated requested data was found")
bool? IsSuccessful;
/**
* The status code returned by the service
*/
// @DataMember
// @ApiMember(Description="The status code returned by the service")
int? StatusCode;
/**
* The status message returned by the service
*/
// @DataMember
// @ApiMember(Description="The status message returned by the service")
String? StatusMessage;
// @DataMember
// @ApiMember(ExcludeInSchema=true)
Map<String,String?>? ServiceDebugFields;
ServiceResponseBase({this.IsSuccessful,this.StatusCode,this.StatusMessage,this.ServiceDebugFields});
ServiceResponseBase.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
IsSuccessful = json['IsSuccessful'];
StatusCode = json['StatusCode'];
StatusMessage = json['StatusMessage'];
ServiceDebugFields = JsonConverters.toStringMap(json['ServiceDebugFields']);
return this;
}
Map<String, dynamic> toJson() => {
'IsSuccessful': IsSuccessful,
'StatusCode': StatusCode,
'StatusMessage': StatusMessage,
'ServiceDebugFields': ServiceDebugFields
};
getTypeName() => "ServiceResponseBase";
TypeContext? context = _ctx;
}
// @DataContract
class CancelTransferFunds extends ServiceRequestBase implements IConvertible
{
/**
* The transaction ID associated with the memo post that was returned in the initial response to create the memo post
*/
// @DataMember
// @ApiMember(Description="The transaction ID associated with the memo post that was returned in the initial response to create the memo post")
String? TransferTransactionId;
/**
* The ID of the memo post that was returned in the initial response to create the memo post
*/
// @DataMember
// @ApiMember(Description="The ID of the memo post that was returned in the initial response to create the memo post")
int? MemoPostId;
/**
* The reason for the cancellation
*/
// @DataMember
// @ApiMember(Description="The reason for the cancellation", IsRequired=true)
String? Reason;
CancelTransferFunds({this.TransferTransactionId,this.MemoPostId,this.Reason});
CancelTransferFunds.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
TransferTransactionId = json['TransferTransactionId'];
MemoPostId = json['MemoPostId'];
Reason = json['Reason'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'TransferTransactionId': TransferTransactionId,
'MemoPostId': MemoPostId,
'Reason': Reason
});
getTypeName() => "CancelTransferFunds";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'services.allianceassociationbank.com', types: <String, TypeInfo> {
'ServiceRequestBase': TypeInfo(TypeOf.AbstractClass),
'ServiceResponseBase': TypeInfo(TypeOf.Class, create:() => ServiceResponseBase()),
'CancelTransferFunds': TypeInfo(TypeOf.Class, create:() => CancelTransferFunds()),
});
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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /CoreBanking/CancelTransfer HTTP/1.1
Host: services.allianceassociationbank.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"TransferTransactionId":"String","MemoPostId":0,"Reason":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"IsSuccessful":false,"StatusCode":0,"StatusMessage":"String","ServiceDebugFields":{"ApiServiceHost":"AZW-AABWPW03","ApiServiceHostVersion":"2016.1.18.3"}}