Skip to content

Commit 6b64f8f

Browse files
Changes by create-pull-request action (#38)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: qdequippe <3193300+qdequippe@users.noreply.github.com>
1 parent e88c3c2 commit 6b64f8f

35 files changed

Lines changed: 1051 additions & 36 deletions

generated/Model/CreateVideoIdentityVerification.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ public function isInitialized($property): bool
3131
* @var string|null
3232
*/
3333
protected $redirectionUrl;
34+
/**
35+
* Enable face recognition step in the Identity verification flow.
36+
*
37+
* @var bool|null
38+
*/
39+
protected $faceRecognition = false;
3440

3541
/**
3642
* The first name provided must match exactly as it appears on the ID document, as a consistency check will be performed. If multiple given names are listed on the document, you must provide only one of them.
@@ -88,4 +94,23 @@ public function setRedirectionUrl(?string $redirectionUrl): self
8894

8995
return $this;
9096
}
97+
98+
/**
99+
* Enable face recognition step in the Identity verification flow.
100+
*/
101+
public function getFaceRecognition(): ?bool
102+
{
103+
return $this->faceRecognition;
104+
}
105+
106+
/**
107+
* Enable face recognition step in the Identity verification flow.
108+
*/
109+
public function setFaceRecognition(?bool $faceRecognition): self
110+
{
111+
$this->initialized['faceRecognition'] = true;
112+
$this->faceRecognition = $faceRecognition;
113+
114+
return $this;
115+
}
91116
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Qdequippe\Yousign\Api\Model;
4+
5+
class EmailNotification extends \ArrayObject
6+
{
7+
/**
8+
* @var array
9+
*/
10+
protected $initialized = [];
11+
12+
public function isInitialized($property): bool
13+
{
14+
return \array_key_exists($property, $this->initialized);
15+
}
16+
/**
17+
* List of disabled email notifications.
18+
*
19+
* @var list<string>|null
20+
*/
21+
protected $disabled;
22+
23+
/**
24+
* List of disabled email notifications.
25+
*
26+
* @return list<string>|null
27+
*/
28+
public function getDisabled(): ?array
29+
{
30+
return $this->disabled;
31+
}
32+
33+
/**
34+
* List of disabled email notifications.
35+
*
36+
* @param list<string>|null $disabled
37+
*/
38+
public function setDisabled(?array $disabled): self
39+
{
40+
$this->initialized['disabled'] = true;
41+
$this->disabled = $disabled;
42+
43+
return $this;
44+
}
45+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
namespace Qdequippe\Yousign\Api\Model;
4+
5+
class EmailNotification1 extends \ArrayObject
6+
{
7+
/**
8+
* @var array
9+
*/
10+
protected $initialized = [];
11+
12+
public function isInitialized($property): bool
13+
{
14+
return \array_key_exists($property, $this->initialized);
15+
}
16+
/**
17+
* @var list<string>|null
18+
*/
19+
protected $disabled;
20+
21+
/**
22+
* @return list<string>|null
23+
*/
24+
public function getDisabled(): ?array
25+
{
26+
return $this->disabled;
27+
}
28+
29+
/**
30+
* @param list<string>|null $disabled
31+
*/
32+
public function setDisabled(?array $disabled): self
33+
{
34+
$this->initialized['disabled'] = true;
35+
$this->disabled = $disabled;
36+
37+
return $this;
38+
}
39+
}

generated/Model/FromExistingContact1.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ public function isInitialized($property): bool
5959
* @var SmsNotification1|null
6060
*/
6161
protected $smsNotification;
62+
/**
63+
* @var EmailNotification1|null
64+
*/
65+
protected $emailNotification;
6266

6367
/**
6468
* Create signer from an existing contact.
@@ -213,4 +217,17 @@ public function setSmsNotification(?SmsNotification1 $smsNotification): self
213217

214218
return $this;
215219
}
220+
221+
public function getEmailNotification(): ?EmailNotification1
222+
{
223+
return $this->emailNotification;
224+
}
225+
226+
public function setEmailNotification(?EmailNotification1 $emailNotification): self
227+
{
228+
$this->initialized['emailNotification'] = true;
229+
$this->emailNotification = $emailNotification;
230+
231+
return $this;
232+
}
216233
}

generated/Model/FromExistingUser1.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ public function isInitialized($property): bool
5959
* @var SmsNotification1|null
6060
*/
6161
protected $smsNotification;
62+
/**
63+
* @var EmailNotification1|null
64+
*/
65+
protected $emailNotification;
6266

6367
/**
6468
* Create signer from an existing user.
@@ -213,4 +217,17 @@ public function setSmsNotification(?SmsNotification1 $smsNotification): self
213217

214218
return $this;
215219
}
220+
221+
public function getEmailNotification(): ?EmailNotification1
222+
{
223+
return $this->emailNotification;
224+
}
225+
226+
public function setEmailNotification(?EmailNotification1 $emailNotification): self
227+
{
228+
$this->initialized['emailNotification'] = true;
229+
$this->emailNotification = $emailNotification;
230+
231+
return $this;
232+
}
216233
}

generated/Model/FromScratch1.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ public function isInitialized($property): bool
5757
* @var SmsNotification1|null
5858
*/
5959
protected $smsNotification;
60+
/**
61+
* @var EmailNotification1|null
62+
*/
63+
protected $emailNotification;
6064

6165
public function getInfo(): ?FromScratch1Info
6266
{
@@ -205,4 +209,17 @@ public function setSmsNotification(?SmsNotification1 $smsNotification): self
205209

206210
return $this;
207211
}
212+
213+
public function getEmailNotification(): ?EmailNotification1
214+
{
215+
return $this->emailNotification;
216+
}
217+
218+
public function setEmailNotification(?EmailNotification1 $emailNotification): self
219+
{
220+
$this->initialized['emailNotification'] = true;
221+
$this->emailNotification = $emailNotification;
222+
223+
return $this;
224+
}
208225
}

generated/Model/SignatureRequestEmailNotification.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ public function isInitialized($property): bool
1717
* @var SignatureRequestEmailNotificationSender|null
1818
*/
1919
protected $sender;
20+
/**
21+
* @var string|null
22+
*/
23+
protected $customNote;
2024

2125
public function getSender(): ?SignatureRequestEmailNotificationSender
2226
{
@@ -30,4 +34,17 @@ public function setSender(?SignatureRequestEmailNotificationSender $sender): sel
3034

3135
return $this;
3236
}
37+
38+
public function getCustomNote(): ?string
39+
{
40+
return $this->customNote;
41+
}
42+
43+
public function setCustomNote(?string $customNote): self
44+
{
45+
$this->initialized['customNote'] = true;
46+
$this->customNote = $customNote;
47+
48+
return $this;
49+
}
3350
}

generated/Model/SignatureRequestPlaceholderSignerSubstituteFromContactIdInput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function isInitialized($property): bool
3636
*/
3737
protected $redirectUrls;
3838
/**
39-
* @var FromScratch1CustomText|null
39+
* @var SignatureRequestSignerFromInfoInputCustomText|null
4040
*/
4141
protected $customText;
4242
/**
@@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
117117
return $this;
118118
}
119119

120-
public function getCustomText(): ?FromScratch1CustomText
120+
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
121121
{
122122
return $this->customText;
123123
}
124124

125-
public function setCustomText(?FromScratch1CustomText $customText): self
125+
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
126126
{
127127
$this->initialized['customText'] = true;
128128
$this->customText = $customText;

generated/Model/SignatureRequestPlaceholderSignerSubstituteFromInfoInput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function isInitialized($property): bool
3636
*/
3737
protected $redirectUrls;
3838
/**
39-
* @var FromScratch1CustomText|null
39+
* @var SignatureRequestSignerFromInfoInputCustomText|null
4040
*/
4141
protected $customText;
4242
/**
@@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
117117
return $this;
118118
}
119119

120-
public function getCustomText(): ?FromScratch1CustomText
120+
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
121121
{
122122
return $this->customText;
123123
}
124124

125-
public function setCustomText(?FromScratch1CustomText $customText): self
125+
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
126126
{
127127
$this->initialized['customText'] = true;
128128
$this->customText = $customText;

generated/Model/SignatureRequestPlaceholderSignerSubstituteFromUserIdInput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function isInitialized($property): bool
3636
*/
3737
protected $redirectUrls;
3838
/**
39-
* @var FromScratch1CustomText|null
39+
* @var SignatureRequestSignerFromInfoInputCustomText|null
4040
*/
4141
protected $customText;
4242
/**
@@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
117117
return $this;
118118
}
119119

120-
public function getCustomText(): ?FromScratch1CustomText
120+
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
121121
{
122122
return $this->customText;
123123
}
124124

125-
public function setCustomText(?FromScratch1CustomText $customText): self
125+
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
126126
{
127127
$this->initialized['customText'] = true;
128128
$this->customText = $customText;

0 commit comments

Comments
 (0)