Skip to content

Commit

Permalink
Extend EnvelopeRecipient and EnvelopeTemplateRecipient resource
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelvais committed Sep 4, 2024
1 parent a1d0924 commit 990aac0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes will be documented in this file.
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [Unreleased]
- Extend `EnvelopeRecipient` and `EnvelopeTemplateRecipient` resource
- Add `Webhook oAuth properties`
- Add `ForbiddenException`
- Add `AccountBilling.productType`
Expand Down
6 changes: 6 additions & 0 deletions src/Resource/EnvelopeRecipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ class EnvelopeRecipient extends BaseResource

public string $authenticationOnDownload;

public ?string $autoplacementTagPlaceholder = null;

public ?string $autoplacementTagPositioning = null;

public ?int $autoplacementTagSize = null;

public string $language;

public string $channelForSigner;
Expand Down
6 changes: 6 additions & 0 deletions src/Resource/EnvelopeTemplateRecipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ class EnvelopeTemplateRecipient extends BaseResource

public string $authenticationOnDownload;

public ?string $autoplacementTagPlaceholder = null;

public ?string $autoplacementTagPositioning = null;

public ?int $autoplacementTagSize = null;

public ?string $name = null;

public ?string $email = null;
Expand Down

0 comments on commit 990aac0

Please sign in to comment.