public func approveTransactions(transactionIDs: [String]) throws
let transactionIDs = ["transaction_id_01"]
do {
try sdkInstance?.approveTransactions(transactionIDs: transactionIDs)
} catch {
print("Error: \(error)")
}
Parameters
The list containing the IDs of the transactions to be approved.