# # TransactionsResponse Returns an array of Transaction Objects. Returns empty array when there is no result. ```php use Xendit\BalanceAndTransaction\TransactionsResponse; ``` ## Properties | Name | Type | Required | Description | Examples | |------------|:-------------:|:-------------:|-------------|:-------------:| | **has_more** | **bool** | ☑️ | Indicates whether there are more items to be queried with `after_id` of the last item from the current result. Use the `links` to follow to the next result. | null | | **links** | [**array**](LinkItem.md) | | The links to the next page based on LinkItem if there is next result. | null | | **data** | [**array**](TransactionResponse.md) | ☑️ | | null | [[Back to README]](../../README.md)