//Create the transaction
transaction := hedera.NewAccountAllowanceDeleteTransaction().
DeleteAllTokenNftAllowances(nftId , ownerAccountId)
if err != nil {
panic(err)
}
//Sign the transaction with the owner account private key and submit to the network
txResponse, err := transaction.Sign(ownerAccountKey).Execute(client)
//Request the receipt of the transaction
receipt, err := txResponse.GetReceipt(client)
if err != nil {
panic(err)
}
//Get the transaction consensus status
transactionStatus := receipt.Status
println("The transaction consensus status is ", transactionStatus)
//v2.13.1+