Expand API to return transaction groups.

This commit is contained in:
James Cole
2023-08-08 15:03:58 +02:00
parent 7a2d4c9bd2
commit 02c906afe6
12 changed files with 412 additions and 107 deletions

View File

@@ -1078,6 +1078,15 @@ interface GroupCollectorInterface
*/
public function setDestinationAccounts(Collection $accounts): GroupCollectorInterface;
/**
* Set the end time of the results to return.
*
* @param Carbon $end
*
* @return GroupCollectorInterface
*/
public function setEnd(Carbon $end): GroupCollectorInterface;
/**
* @param bool $expandGroupSearch
*/
@@ -1262,6 +1271,15 @@ interface GroupCollectorInterface
*/
public function setSourceAccounts(Collection $accounts): GroupCollectorInterface;
/**
* Set the start time of the results to return.
*
* @param Carbon $start
*
* @return GroupCollectorInterface
*/
public function setStart(Carbon $start): GroupCollectorInterface;
/**
* Limit results to a specific tag.
*