Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add role approver #173

Merged
merged 9 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `IdentificationInfo` resource and `EnvelopeRecipient.identification`
- Add `EnvelopeProperties.auditLogAvailableToAccountUsers`
- Add `IdentificationInfo.approvalMode`
- Add `EnvelopeRecipient.approvalMode`
- Add `EnvelopeRecipient.approveDocumentsAtOnce`
- Add `EnvelopeTemplateRecipient.approvalMode`
- Add `EnvelopeTemplateRecipient.approveDocumentsAtOnce`

### Changed
- Change `Identification.envelope` from string to EnvelopeInfo
Expand Down
4 changes: 4 additions & 0 deletions src/Resource/EnvelopeRecipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,8 @@ class EnvelopeRecipient extends BaseResource
public ?IdentifyScenarioInfo $identifyScenarioInfo = null;

public ?IdentificationInfo $identification = null;

public string $approvalMode;

public bool $approveDocumentsAtOnce;
}
4 changes: 4 additions & 0 deletions src/Resource/EnvelopeTemplateRecipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,8 @@ class EnvelopeTemplateRecipient extends BaseResource
public ?SignatureScenarioVersionInfo $scenarioVersionInfo = null;

public ?IdentifyScenarioInfo $identifyScenarioInfo = null;

public string $approvalMode;

public bool $approveDocumentsAtOnce;
}