From 0c410cd60adf69ce7636fa94e099c3ee44ad2b64 Mon Sep 17 00:00:00 2001 From: Omar Furrer Date: Mon, 19 Mar 2018 22:19:47 +0200 Subject: [PATCH] Add getThresholds to Account model --- src/Model/Account.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Model/Account.php b/src/Model/Account.php index da1ab4f..a7071dc 100755 --- a/src/Model/Account.php +++ b/src/Model/Account.php @@ -333,6 +333,16 @@ public function getCustomAssetBalanceStroops(Asset $asset) return null; } + + /** + * Returns an array holding account thresholds. + * + * @return array + */ + public function getThresholds() + { + return $this->thresholds; + } public function getSequence() {