-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create EnvelopeTemplateRecipientDefaults.php
- Loading branch information
1 parent
40efe31
commit 7bf3272
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCz\DigiSign\Resource; | ||
|
||
use DigitalCz\DigiSign\Resource\Traits\EntityResourceTrait; | ||
|
||
class EnvelopeTemplateRecipientDefaults extends BaseResource | ||
{ | ||
use EntityResourceTrait; | ||
|
||
public string $signatureType; | ||
|
||
public string $authenticationOnOpen; | ||
|
||
public string $authenticationOnSignature; | ||
|
||
public string $authenticationOnDownload; | ||
|
||
public string $language; | ||
|
||
public string $channelForSigner; | ||
|
||
public string $channelForDownload; | ||
|
||
/** @var array<string, string> */ | ||
public array $bankIdScopes; | ||
|
||
/** @var array<string, string> */ | ||
public array $visibleFields; | ||
|
||
/** @var array<string, string> */ | ||
public array $validatedFields; | ||
|
||
public bool $delegation; | ||
|
||
public ?string $scenario = null; | ||
|
||
public ?string $identifyScenario = null; | ||
|
||
public ?IdentifyScenarioInfo $identifyScenarioInfo = null; | ||
|
||
public string $approvalMode; | ||
|
||
public bool $approveDocumentsAtOnce; | ||
} |