Skip to content

Commit

Permalink
Merge pull request #285 from digitalcz/DGS-2918-batchsending-item-tags
Browse files Browse the repository at this point in the history
Add `BatchSendingItem.tags` in to resource
  • Loading branch information
IamDejv authored Jan 7, 2025
2 parents d77215f + 3930cc8 commit 9019e8f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions src/Resource/BatchSendingItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ class BatchSendingItem extends BaseResource
/** @var array<BatchSendingItemRecipientRaw> */
public array $recipients;

/** @var array<BatchSendingItemTagRaw> */
public array $tags;

/** @var array<Violation> */
public array $violations;
}
14 changes: 14 additions & 0 deletions src/Resource/BatchSendingItemTagRaw.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

declare(strict_types=1);

namespace DigitalCz\DigiSign\Resource;

class BatchSendingItemTagRaw extends BaseResource
{
public ?string $alias;

public ?string $customIdentifier;

public ?string $value;
}

0 comments on commit 9019e8f

Please sign in to comment.