Skip to content

Commit

Permalink
[DGS-2436] Extend Envelope resource (#255)
Browse files Browse the repository at this point in the history
Add `Envelope.createdBy` and `Envelope.sentBy`

Co-authored-by: pavelvais <[email protected]>
  • Loading branch information
PavelVais and pavelvais authored Aug 13, 2024
1 parent 5eb3749 commit 1ac1004
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `AccountBilling.userContactLimit`
- Add `IdentifyScenarioVersion.restrictedCountries`
- Add `EnvelopeTemplateDocumentAssignments` endpoint
- Add `Envelope.createdBy` and `Envelope.sentBy`

## [2.4.0] - 2024-05-14
### Added
Expand Down
4 changes: 4 additions & 0 deletions src/Resource/Envelope.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,9 @@ class Envelope extends BaseResource

public ?UserInfo $sender = null;

public Blame $createdBy;

public ?Blame $sentBy = null;

public bool $sentWithSignatureScenarios;
}

0 comments on commit 1ac1004

Please sign in to comment.