Update Go and RN snippets to 0.2.9

This commit is contained in:
Ross Savage
2023-11-13 12:16:00 +01:00
committed by ok300
parent 01ef82a696
commit 751468285c
6 changed files with 14 additions and 12 deletions

View File

@@ -5,14 +5,14 @@ import {
const exampleListPayments = async () => {
// ANCHOR: list-payments
const payments = listPayments({ filter: PaymentTypeFilter.ALL })
const payments = listPayments({})
// ANCHOR_END: list-payments
}
const exampleListPaymentsFiltered = async () => {
// ANCHOR: list-payments-filtered
const payments = listPayments({
filter: PaymentTypeFilter.SENT,
filters: [PaymentTypeFilter.SENT],
fromTimestamp: 1696880000,
includeFailures: true
})