From 462ea43f15cf5602b25e33df6e1bc70088c84060 Mon Sep 17 00:00:00 2001 From: pavelvais Date: Wed, 25 Feb 2026 15:04:25 +0100 Subject: [PATCH] Add `AccountBilling.activeAccountUsage` and `AccountBilling.accountLimit` properties --- CHANGELOG.md | 2 ++ src/Resource/AccountBilling.php | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 990ad70..54c954a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Add `NotificationChannels.envelopeNotification` property - Add `AccountBilling.bankIdSign` property - Add `AccountBilling.bankIdQSign` property +- Add `AccountBilling.activeAccountUsage` property +- Add `AccountBilling.accountLimit` property - Add `AccountSettings.delegation` property - Add `EnvelopeTemplateRecipient.notificationCopies` and `EnvelopeRecipient.notificationCopies` property - Add `EnvelopeRecipient.SignInfo` endpoint with resources diff --git a/src/Resource/AccountBilling.php b/src/Resource/AccountBilling.php index d4121a5..4aae3d1 100644 --- a/src/Resource/AccountBilling.php +++ b/src/Resource/AccountBilling.php @@ -87,4 +87,8 @@ class AccountBilling extends BaseResource public bool $bankIdSign; public bool $bankIdQSign; + + public int $activeAccountUsage; + + public int $accountLimit; }