VRPStatus

public enum VRPStatus : String, Codable
  • Reques’ is made but a response is not provided yet.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case authorised = "Authorised"
  • The PSU has revoked the vrp.

    Declaration

    Swift

    case revoked = "Revoked"
  • VRP has expired.

    Declaration

    Swift

    case expired = "Expired"
  • The PSU has cancelled the VRP flow.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case abandoned = "Abandoned"