BulkPaymentStatus

public enum BulkPaymentStatus : String, Codable

Status of the Bulk Payment Paylink.

  • PaymentRequest is made but a PaymentResponse is not provided yet.

    Declaration

    Swift

    case initial = "Initial"
  • A PaymentResponse, including bank’s payment URL is returned and the PSU is expected to authorise the payment.

    Declaration

    Swift

    case awaitingAuthorization = "AwaitingAuthorization"
  • The PSU has authorized the payment from their banking system.

    Declaration

    Swift

    case authorised = "Authorised"
  • Ecospend and the PSU’s Bank verified the payment authorization. This does not necessarily mean that the money has been received by the creditor account.

    Declaration

    Swift

    case verified = "Verified"
  • Payment is completed, and transfer is made.

    Declaration

    Swift

    case completed = "Completed"
  • The PSU has cancelled the payment flow.

    Declaration

    Swift

    case canceled = "Canceled"
  • Payment flow has failed due to an error.

    Declaration

    Swift

    case failed = "Failed"
  • Bank has rejected the payment.

    Declaration

    Swift

    case rejected = "Rejected"
  • The PSU has deserted the payment journey prior to being redirected back from the bank.

    Declaration

    Swift

    case abandoned = "Abandoned"