ConsentStatus
public enum ConsentStatus : String, Codable
Consent statuses for Datalink.
-
Request is made but a Response is not provided yet.
Declaration
Swift
case initial = "Initial"
-
Response is returned and the PSU is expected to authorise the consent.
Declaration
Swift
case awaitingAuthorization = "AwaitingAuthorization"
-
The PSU has authorized the consent from their banking system.
Declaration
Swift
case authorised = "Authorised"
-
Ecospend and the PSU’s Bank verified the consent authorization.
Declaration
Swift
case active = "Active"
-
The PSU has cancelled the consent flow.
Declaration
Swift
case canceled = "Canceled"
-
Consent flow has failed due to an error.
Declaration
Swift
case failed = "Failed"
-
The PSU has deserted the consent journey prior to being redirected back from the bank.
Declaration
Swift
case abandoned = "Abandoned"
-
Consent flow is revoked.
Declaration
Swift
case revoked = "Revoked"
-
Consent flow is expired.
Declaration
Swift
case expired = "Expired"
-
Consent flow is waiting revocation.
Declaration
Swift
case revocationPending = "RevocationPending"