PostSep08TransactionEnum
public enum PostSep08TransactionEnum : Sendable
Response enum for posting a transaction to a SEP-08 approval server.
Returned by RegulatedAssetsService.postTransaction() methods. Represents
the various possible outcomes defined in SEP-08.
-
Transaction approved without modifications.
Declaration
Swift
case success(response: Sep08PostTransactionSuccess) -
Transaction approved with modifications by the issuer.
Declaration
Swift
case revised(response: Sep08PostTransactionRevised) -
Transaction approval is pending, client should retry later.
Declaration
Swift
case pending(response: Sep08PostTransactionPending) -
User action is required before approval can proceed.
Declaration
Swift
case actionRequired(response: Sep08PostTransactionActionRequired) -
Transaction rejected by the approval server.
Declaration
Swift
case rejected(response: Sep08PostTransactionRejected) -
Request failed due to network or server error.
Declaration
Swift
case failure(error: HorizonRequestError)
View on GitHub
Install in Dash