From 821778db93eee3422f748e3004d2a9da70150fce Mon Sep 17 00:00:00 2001 From: David Kalianko <56268618+IamDejv@users.noreply.github.com> Date: Tue, 18 Jun 2024 13:52:36 +0200 Subject: [PATCH] Extend `AccountBilling` resource with identify limits (#246) Co-authored-by: David Kalianko --- CHANGELOG.md | 1 + src/Resource/AccountBilling.php | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c7d0d4..7cae3a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Add `EnvelopeProperties.channelForSender` in to resource - Edit `CertificateInfo` resource - Extend `Contact` resource +- Extend `AccountBilling` resource with identify limits ## [2.4.0] - 2024-05-14 ### Added diff --git a/src/Resource/AccountBilling.php b/src/Resource/AccountBilling.php index 168f5a4..725d35c 100644 --- a/src/Resource/AccountBilling.php +++ b/src/Resource/AccountBilling.php @@ -49,4 +49,12 @@ class AccountBilling extends BaseResource public bool $signatureScenarios; public bool $identifyAi; + + public ?int $identifyAiLimit; + + public ?int $identifyNoneOrManualLimit; + + public int $identifyAiUsage; + + public int $identifyNoneOrManualUsage; }