Documentation Index
Fetch the complete documentation index at: https://docs.iso20022js.com/llms.txt
Use this file to discover all available pages before exploring further.
PaymentStatusReport
Usually aPaymentStatusReport has a single StatusInformation element, but some banks may return multiple elements. This class
handles both cases.
Returns the type of the first element in the report.
Returns the status of the first element in the report.
The status information of the first element in the report.
The status information of the first element in the report.
OriginalGroupInformation
Represents the original group information in a payment status report.| Property | Type | Description |
|---|---|---|
| originalMessageId | string | The original message ID associated with the group. |
StatusType
Represents the type of status in a payment status report. Possible values:'group' | 'payment' | 'transaction'
PaymentStatusCode
Represents the status codes in a payment status report.| Code | Description |
|---|---|
| RJCT | Rejected |
| ACCP | Partially Accepted |
| PNDG | Pending |
| ACCP | Accepted |
| ACSP | Accepted Settlement In Progress |
| ACSC | Accepted Credit Settlement Completed |
| ACSC | Accepted Settlement Completed |
| ACTC | Accepted Technical Validation |
PaymentStatus
A type representing the possible values ofPaymentStatusCode.
BaseStatusInformation
Represents the base structure for status information in a payment status report.| Property | Type | Description |
|---|---|---|
| type | StatusType | The type of status (group, payment, or transaction). |
| status | PaymentStatus | The status value. |
| reason? | object | Optional reason for the status. |
| reason.code? | string | Optional reason code. |
| reason.additionalInformation? | string | Optional additional information about the reason. |
GroupStatusInformation
Represents the status information for a group in a payment status report. ExtendsBaseStatusInformation.
| Property | Type | Description |
|---|---|---|
| type | ’group’ | The type is always ‘group’ for GroupStatus. |
| originalMessageId | string | The original message ID associated with the group. |
PaymentStatusInformation
Represents the status information for a payment in a payment status report. ExtendsBaseStatusInformation.
| Property | Type | Description |
|---|---|---|
| type | ’payment’ | The type is always ‘payment’ for PaymentStatus. |
| originalPaymentId | string | The original payment ID associated with the payment. |
TransactionStatusInformation
Represents the status information for a transaction in a payment status report. ExtendsBaseStatusInformation.
| Property | Type | Description |
|---|---|---|
| type | ’transaction’ | The type is always ‘transaction’ for TransactionStatus. |
| originalEndToEndId | string | The original end-to-end ID associated with the transaction. |
StatusInformation
A union type of all possible status information types in a payment status report. Possible types:GroupStatusInformationPaymentStatusInformationTransactionStatusInformation