Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Fix `BatchSendingItem` Resource

Edit Changelog

Update BatchSendingItem Resource
  • Loading branch information
David Kalianko committed Sep 18, 2024
1 parent 51ffb27 commit 2821479
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `IdentifyScenarioVersion.restrictedCountries`
- Add `EnvelopeTemplateDocumentAssignments` endpoint
- Add `Envelope.createdBy` and `Envelope.sentBy`
- Add `BatchSendings` and `BatchSendingsItems` endpoints
- Add `BatchSendings` and `BatchSendingsItems` endpoints and resources
- Add `AccountSecurity.localSignature` to resource

## [2.4.0] - 2024-05-14
Expand Down
6 changes: 2 additions & 4 deletions src/Resource/BatchSendingItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ class BatchSendingItem extends BaseResource

public string $name;

public int $itemNumber;

public ?string $envelope;
public ?string $envelopeId;

public string $status;

Expand All @@ -26,7 +24,7 @@ class BatchSendingItem extends BaseResource
public ?string $failedMessage;

/** @var array<BatchSendingItemRecipientRaw> */
public array $recipientsRawData;
public array $recipients;

/** @var array<Violation>|null */
public ?array $violations;
Expand Down

0 comments on commit 2821479

Please sign in to comment.