Skip to content

Commit

Permalink
filtered function
Browse files Browse the repository at this point in the history
  • Loading branch information
faiberrec committed Jan 31, 2024
1 parent 522d650 commit 9495094
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/recurly/general_ledger_account_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ public static function get($params = null, $client = null) {
return new self($uri, $client);
}

public static function getByAccountType($account_type, $client = null) {
$params['account_type'] = $account_type;
return self::get($params, $client);
}

protected function getNodeName() {
return 'general_ledger_accounts';
}
Expand Down

0 comments on commit 9495094

Please sign in to comment.