From 3930cc80ee89ad2fd4105e9f96214ea8b1f858eb Mon Sep 17 00:00:00 2001 From: pavelvais Date: Tue, 7 Jan 2025 12:16:28 +0100 Subject: [PATCH] Add `BatchSendingItem.tags` in to resource --- CHANGELOG.md | 1 + src/Resource/BatchSendingItem.php | 3 +++ src/Resource/BatchSendingItemTagRaw.php | 14 ++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 src/Resource/BatchSendingItemTagRaw.php diff --git a/CHANGELOG.md b/CHANGELOG.md index d7e1d9d..4cae35a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip - Add `AccountSecurity.visibleNoneSignerChannelOption` in to resource - Add `AccountSecurity.hasCustomCertificate` in to resource - Add `BatchSendingsEndpoint.stats` endpoint +- Add `BatchSendingItem.tags` in to resource - Extend `BatchSending` and `BatchSendingItem` resource - Edit `BatchSending` resource with envelopeTemplate - Extend `BatchSendingStats` resource with deleted diff --git a/src/Resource/BatchSendingItem.php b/src/Resource/BatchSendingItem.php index 918face..d810e21 100644 --- a/src/Resource/BatchSendingItem.php +++ b/src/Resource/BatchSendingItem.php @@ -26,6 +26,9 @@ class BatchSendingItem extends BaseResource /** @var array */ public array $recipients; + /** @var array */ + public array $tags; + /** @var array */ public array $violations; } diff --git a/src/Resource/BatchSendingItemTagRaw.php b/src/Resource/BatchSendingItemTagRaw.php new file mode 100644 index 0000000..eebaddf --- /dev/null +++ b/src/Resource/BatchSendingItemTagRaw.php @@ -0,0 +1,14 @@ +