Skip to content

Recuperar extrato

João Pedro Truchinski Borba edited this page Nov 26, 2023 · 2 revisions
ResourceSet<FinancialTransaction> financialTransactionResourceSet = FinancialTransaction
                .reader()
                .read();

É possível utilizar filtros por cobrança, transferência, etc. Exemplo:

ResourceSet<FinancialTransaction> financialTransactionResourceSet = FinancialTransaction
                .reader()
                .setTransferId("transferId")
                .read();