I am following this tutorial and writing code to send hbar from my account to another account.
https://docs.hedera.com/hedera/getting-started/transfer-hbar
const sendHbar = await new TransferTransaction()
.addHbarTransfer(myAccountId, Hbar.fromTinybars(-1000)) //Sending account
.addHbarTransfer(newAccountId, Hbar.fromTinybars(1000)) //Receiving account
.execute(client);
let receipt = await sendHbar.getReceipt(client);
However, there is no transaction id in the receipt. How do I get the transaction ID?