Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
qdequippe committed Jan 2, 2025
1 parent e88c3c2 commit d94270e
Show file tree
Hide file tree
Showing 35 changed files with 1,051 additions and 36 deletions.
25 changes: 25 additions & 0 deletions generated/Model/CreateVideoIdentityVerification.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public function isInitialized($property): bool
* @var string|null
*/
protected $redirectionUrl;
/**
* Enable face recognition step in the Identity verification flow.
*
* @var bool|null
*/
protected $faceRecognition = false;

/**
* 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.
Expand Down Expand Up @@ -88,4 +94,23 @@ public function setRedirectionUrl(?string $redirectionUrl): self

return $this;
}

/**
* Enable face recognition step in the Identity verification flow.
*/
public function getFaceRecognition(): ?bool
{
return $this->faceRecognition;
}

/**
* Enable face recognition step in the Identity verification flow.
*/
public function setFaceRecognition(?bool $faceRecognition): self
{
$this->initialized['faceRecognition'] = true;
$this->faceRecognition = $faceRecognition;

return $this;
}
}
45 changes: 45 additions & 0 deletions generated/Model/EmailNotification.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

namespace Qdequippe\Yousign\Api\Model;

class EmailNotification extends \ArrayObject
{
/**
* @var array
*/
protected $initialized = [];

public function isInitialized($property): bool
{
return \array_key_exists($property, $this->initialized);
}
/**
* List of disabled email notifications.
*
* @var list<string>|null
*/
protected $disabled;

/**
* List of disabled email notifications.
*
* @return list<string>|null
*/
public function getDisabled(): ?array
{
return $this->disabled;
}

/**
* List of disabled email notifications.
*
* @param list<string>|null $disabled
*/
public function setDisabled(?array $disabled): self
{
$this->initialized['disabled'] = true;
$this->disabled = $disabled;

return $this;
}
}
39 changes: 39 additions & 0 deletions generated/Model/EmailNotification1.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?php

namespace Qdequippe\Yousign\Api\Model;

class EmailNotification1 extends \ArrayObject
{
/**
* @var array
*/
protected $initialized = [];

public function isInitialized($property): bool
{
return \array_key_exists($property, $this->initialized);
}
/**
* @var list<string>|null
*/
protected $disabled;

/**
* @return list<string>|null
*/
public function getDisabled(): ?array
{
return $this->disabled;
}

/**
* @param list<string>|null $disabled
*/
public function setDisabled(?array $disabled): self
{
$this->initialized['disabled'] = true;
$this->disabled = $disabled;

return $this;
}
}
17 changes: 17 additions & 0 deletions generated/Model/FromExistingContact1.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ public function isInitialized($property): bool
* @var SmsNotification1|null
*/
protected $smsNotification;
/**
* @var EmailNotification1|null
*/
protected $emailNotification;

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

return $this;
}

public function getEmailNotification(): ?EmailNotification1
{
return $this->emailNotification;
}

public function setEmailNotification(?EmailNotification1 $emailNotification): self
{
$this->initialized['emailNotification'] = true;
$this->emailNotification = $emailNotification;

return $this;
}
}
17 changes: 17 additions & 0 deletions generated/Model/FromExistingUser1.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ public function isInitialized($property): bool
* @var SmsNotification1|null
*/
protected $smsNotification;
/**
* @var EmailNotification1|null
*/
protected $emailNotification;

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

return $this;
}

public function getEmailNotification(): ?EmailNotification1
{
return $this->emailNotification;
}

public function setEmailNotification(?EmailNotification1 $emailNotification): self
{
$this->initialized['emailNotification'] = true;
$this->emailNotification = $emailNotification;

return $this;
}
}
17 changes: 17 additions & 0 deletions generated/Model/FromScratch1.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public function isInitialized($property): bool
* @var SmsNotification1|null
*/
protected $smsNotification;
/**
* @var EmailNotification1|null
*/
protected $emailNotification;

public function getInfo(): ?FromScratch1Info
{
Expand Down Expand Up @@ -205,4 +209,17 @@ public function setSmsNotification(?SmsNotification1 $smsNotification): self

return $this;
}

public function getEmailNotification(): ?EmailNotification1
{
return $this->emailNotification;
}

public function setEmailNotification(?EmailNotification1 $emailNotification): self
{
$this->initialized['emailNotification'] = true;
$this->emailNotification = $emailNotification;

return $this;
}
}
17 changes: 17 additions & 0 deletions generated/Model/SignatureRequestEmailNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public function isInitialized($property): bool
* @var SignatureRequestEmailNotificationSender|null
*/
protected $sender;
/**
* @var string|null
*/
protected $customNote;

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

return $this;
}

public function getCustomNote(): ?string
{
return $this->customNote;
}

public function setCustomNote(?string $customNote): self
{
$this->initialized['customNote'] = true;
$this->customNote = $customNote;

return $this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function isInitialized($property): bool
*/
protected $redirectUrls;
/**
* @var FromScratch1CustomText|null
* @var SignatureRequestSignerFromInfoInputCustomText|null
*/
protected $customText;
/**
Expand Down Expand Up @@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
return $this;
}

public function getCustomText(): ?FromScratch1CustomText
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
{
return $this->customText;
}

public function setCustomText(?FromScratch1CustomText $customText): self
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
{
$this->initialized['customText'] = true;
$this->customText = $customText;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function isInitialized($property): bool
*/
protected $redirectUrls;
/**
* @var FromScratch1CustomText|null
* @var SignatureRequestSignerFromInfoInputCustomText|null
*/
protected $customText;
/**
Expand Down Expand Up @@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
return $this;
}

public function getCustomText(): ?FromScratch1CustomText
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
{
return $this->customText;
}

public function setCustomText(?FromScratch1CustomText $customText): self
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
{
$this->initialized['customText'] = true;
$this->customText = $customText;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function isInitialized($property): bool
*/
protected $redirectUrls;
/**
* @var FromScratch1CustomText|null
* @var SignatureRequestSignerFromInfoInputCustomText|null
*/
protected $customText;
/**
Expand Down Expand Up @@ -117,12 +117,12 @@ public function setRedirectUrls(?FromScratch1RedirectUrls $redirectUrls): self
return $this;
}

public function getCustomText(): ?FromScratch1CustomText
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
{
return $this->customText;
}

public function setCustomText(?FromScratch1CustomText $customText): self
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
{
$this->initialized['customText'] = true;
$this->customText = $customText;
Expand Down
6 changes: 3 additions & 3 deletions generated/Model/SignatureRequestSignerFromContactIdInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function isInitialized($property): bool
*/
protected $redirectUrls;
/**
* @var FromScratch1CustomText|null
* @var SignatureRequestSignerFromInfoInputCustomText|null
*/
protected $customText;

Expand Down Expand Up @@ -117,12 +117,12 @@ public function setRedirectUrls(?SignatureRequestSignerFromInfoInputRedirectUrls
return $this;
}

public function getCustomText(): ?FromScratch1CustomText
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
{
return $this->customText;
}

public function setCustomText(?FromScratch1CustomText $customText): self
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
{
$this->initialized['customText'] = true;
$this->customText = $customText;
Expand Down
6 changes: 3 additions & 3 deletions generated/Model/SignatureRequestSignerFromInfoInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function isInitialized($property): bool
*/
protected $redirectUrls;
/**
* @var FromScratch1CustomText|null
* @var SignatureRequestSignerFromInfoInputCustomText|null
*/
protected $customText;

Expand Down Expand Up @@ -117,12 +117,12 @@ public function setRedirectUrls(?SignatureRequestSignerFromInfoInputRedirectUrls
return $this;
}

public function getCustomText(): ?FromScratch1CustomText
public function getCustomText(): ?SignatureRequestSignerFromInfoInputCustomText
{
return $this->customText;
}

public function setCustomText(?FromScratch1CustomText $customText): self
public function setCustomText(?SignatureRequestSignerFromInfoInputCustomText $customText): self
{
$this->initialized['customText'] = true;
$this->customText = $customText;
Expand Down
Loading

0 comments on commit d94270e

Please sign in to comment.