Skip to content

Commit

Permalink
Extend BatchSending resource
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kalianko committed Nov 11, 2024
1 parent d4a0a10 commit 28f5e7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `AccountSecurity.visibleAutosignRoleOption` in to resource
- Add `AccountSecurity.visibleNoneSignerChannelOption` in to resource
- Add `BatchSendingsEndpoint.stats` endpoint
- Extend `BatchSending` resource

## [2.5.0] - 2024-10-14
- Add `AccountBilling.automaticTagsPlacement`
Expand Down
7 changes: 7 additions & 0 deletions src/Resource/BatchSending.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace DigitalCz\DigiSign\Resource;

use DateTime;
use DigitalCz\DigiSign\Resource\Traits\EntityResourceTrait;

class BatchSending extends BaseResource
Expand Down Expand Up @@ -34,4 +35,10 @@ class BatchSending extends BaseResource
* @var array<string>
*/
public array $importFields;

public ?DateTime $sentAt;

public ?DateTime $finishedAt;

public ?Blame $sentBy;
}

0 comments on commit 28f5e7b

Please sign in to comment.