Skip to content

Commit

Permalink
Add role approver (#173)
Browse files Browse the repository at this point in the history
* Update EnvelopeRecipient.php

Add approvalMode and approveDocumentsAtOnce

* Update EnvelopeTemplateRecipient.php

* Update EnvelopeTag.php

* Update CHANGELOG.md

* Update EnvelopeTag.php

* Update EnvelopeTag.php

* Update CHANGELOG.md

* Update EnvelopeTag.php

* Update EnvelopeTag.php
  • Loading branch information
Pepperoni1337 authored Oct 2, 2023
1 parent a22135b commit ef3d8bd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,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;
}

0 comments on commit ef3d8bd

Please sign in to comment.