Skip to content
Closed
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
8 changes: 4 additions & 4 deletions sdks/php/src/Model/AccountCreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public function getEmailAddress()
*
* @param string $email_address the email address which will be associated with the new Account
*
* @return self
* @return static
*/
public function setEmailAddress(string $email_address)
{
Expand All @@ -363,7 +363,7 @@ public function getClientId()
*
* @param string|null $client_id Used when creating a new account with OAuth authorization. See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization)
*
* @return self
* @return static
*/
public function setClientId(?string $client_id)
{
Expand All @@ -390,7 +390,7 @@ public function getClientSecret()
*
* @param string|null $client_secret Used when creating a new account with OAuth authorization. See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization)
*
* @return self
* @return static
*/
public function setClientSecret(?string $client_secret)
{
Expand All @@ -417,7 +417,7 @@ public function getLocale()
*
* @param string|null $locale The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values.
*
* @return self
* @return static
*/
public function setLocale(?string $locale)
{
Expand Down
6 changes: 3 additions & 3 deletions sdks/php/src/Model/AccountCreateResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public function getAccount()
*
* @param AccountResponse $account account
*
* @return self
* @return static
*/
public function setAccount(AccountResponse $account)
{
Expand All @@ -356,7 +356,7 @@ public function getOauthData()
*
* @param OAuthTokenResponse|null $oauth_data oauth_data
*
* @return self
* @return static
*/
public function setOauthData(?OAuthTokenResponse $oauth_data)
{
Expand All @@ -383,7 +383,7 @@ public function getWarnings()
*
* @param WarningResponse[]|null $warnings a list of warnings
*
* @return self
* @return static
*/
public function setWarnings(?array $warnings)
{
Expand Down
4 changes: 2 additions & 2 deletions sdks/php/src/Model/AccountGetResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public function getAccount()
*
* @param AccountResponse $account account
*
* @return self
* @return static
*/
public function setAccount(AccountResponse $account)
{
Expand All @@ -349,7 +349,7 @@ public function getWarnings()
*
* @param WarningResponse[]|null $warnings a list of warnings
*
* @return self
* @return static
*/
public function setWarnings(?array $warnings)
{
Expand Down
22 changes: 11 additions & 11 deletions sdks/php/src/Model/AccountResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public function getAccountId()
*
* @param string|null $account_id The ID of the Account
*
* @return self
* @return static
*/
public function setAccountId(?string $account_id)
{
Expand All @@ -407,7 +407,7 @@ public function getEmailAddress()
*
* @param string|null $email_address the email address associated with the Account
*
* @return self
* @return static
*/
public function setEmailAddress(?string $email_address)
{
Expand All @@ -434,7 +434,7 @@ public function getIsLocked()
*
* @param bool|null $is_locked returns `true` if the user has been locked out of their account by a team admin
*
* @return self
* @return static
*/
public function setIsLocked(?bool $is_locked)
{
Expand All @@ -461,7 +461,7 @@ public function getIsPaidHs()
*
* @param bool|null $is_paid_hs returns `true` if the user has a paid Dropbox Sign account
*
* @return self
* @return static
*/
public function setIsPaidHs(?bool $is_paid_hs)
{
Expand All @@ -488,7 +488,7 @@ public function getIsPaidHf()
*
* @param bool|null $is_paid_hf returns `true` if the user has a paid HelloFax account
*
* @return self
* @return static
*/
public function setIsPaidHf(?bool $is_paid_hf)
{
Expand All @@ -515,7 +515,7 @@ public function getQuotas()
*
* @param AccountResponseQuotas|null $quotas quotas
*
* @return self
* @return static
*/
public function setQuotas(?AccountResponseQuotas $quotas)
{
Expand All @@ -542,7 +542,7 @@ public function getCallbackUrl()
*
* @param string|null $callback_url the URL that Dropbox Sign events will `POST` to
*
* @return self
* @return static
*/
public function setCallbackUrl(?string $callback_url)
{
Expand Down Expand Up @@ -576,7 +576,7 @@ public function getRoleCode()
*
* @param string|null $role_code the membership role for the team
*
* @return self
* @return static
*/
public function setRoleCode(?string $role_code)
{
Expand Down Expand Up @@ -610,7 +610,7 @@ public function getTeamId()
*
* @param string|null $team_id the id of the team account belongs to
*
* @return self
* @return static
*/
public function setTeamId(?string $team_id)
{
Expand Down Expand Up @@ -644,7 +644,7 @@ public function getLocale()
*
* @param string|null $locale The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values.
*
* @return self
* @return static
*/
public function setLocale(?string $locale)
{
Expand Down Expand Up @@ -678,7 +678,7 @@ public function getUsage()
*
* @param AccountResponseUsage|null $usage usage
*
* @return self
* @return static
*/
public function setUsage(?AccountResponseUsage $usage)
{
Expand Down
12 changes: 6 additions & 6 deletions sdks/php/src/Model/AccountResponseQuotas.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public function getApiSignatureRequestsLeft()
*
* @param int|null $api_signature_requests_left API signature requests remaining
*
* @return self
* @return static
*/
public function setApiSignatureRequestsLeft(?int $api_signature_requests_left)
{
Expand Down Expand Up @@ -379,7 +379,7 @@ public function getDocumentsLeft()
*
* @param int|null $documents_left signature requests remaining
*
* @return self
* @return static
*/
public function setDocumentsLeft(?int $documents_left)
{
Expand Down Expand Up @@ -413,7 +413,7 @@ public function getTemplatesTotal()
*
* @param int|null $templates_total total API templates allowed
*
* @return self
* @return static
*/
public function setTemplatesTotal(?int $templates_total)
{
Expand Down Expand Up @@ -447,7 +447,7 @@ public function getTemplatesLeft()
*
* @param int|null $templates_left API templates remaining
*
* @return self
* @return static
*/
public function setTemplatesLeft(?int $templates_left)
{
Expand Down Expand Up @@ -481,7 +481,7 @@ public function getSmsVerificationsLeft()
*
* @param int|null $sms_verifications_left SMS verifications remaining
*
* @return self
* @return static
*/
public function setSmsVerificationsLeft(?int $sms_verifications_left)
{
Expand Down Expand Up @@ -515,7 +515,7 @@ public function getNumFaxPagesLeft()
*
* @param int|null $num_fax_pages_left Number of fax pages left
*
* @return self
* @return static
*/
public function setNumFaxPagesLeft(?int $num_fax_pages_left)
{
Expand Down
2 changes: 1 addition & 1 deletion sdks/php/src/Model/AccountResponseUsage.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public function getFaxPagesSent()
*
* @param int|null $fax_pages_sent Number of fax pages sent
*
* @return self
* @return static
*/
public function setFaxPagesSent(?int $fax_pages_sent)
{
Expand Down
6 changes: 3 additions & 3 deletions sdks/php/src/Model/AccountUpdateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public function getAccountId()
*
* @param string|null $account_id The ID of the Account
*
* @return self
* @return static
*/
public function setAccountId(?string $account_id)
{
Expand Down Expand Up @@ -358,7 +358,7 @@ public function getCallbackUrl()
*
* @param string|null $callback_url the URL that Dropbox Sign should POST events to
*
* @return self
* @return static
*/
public function setCallbackUrl(?string $callback_url)
{
Expand All @@ -385,7 +385,7 @@ public function getLocale()
*
* @param string|null $locale The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values.
*
* @return self
* @return static
*/
public function setLocale(?string $locale)
{
Expand Down
2 changes: 1 addition & 1 deletion sdks/php/src/Model/AccountVerifyRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public function getEmailAddress()
*
* @param string $email_address email address to run the verification for
*
* @return self
* @return static
*/
public function setEmailAddress(string $email_address)
{
Expand Down
4 changes: 2 additions & 2 deletions sdks/php/src/Model/AccountVerifyResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ public function getAccount()
*
* @param AccountVerifyResponseAccount|null $account account
*
* @return self
* @return static
*/
public function setAccount(?AccountVerifyResponseAccount $account)
{
Expand All @@ -344,7 +344,7 @@ public function getWarnings()
*
* @param WarningResponse[]|null $warnings a list of warnings
*
* @return self
* @return static
*/
public function setWarnings(?array $warnings)
{
Expand Down
2 changes: 1 addition & 1 deletion sdks/php/src/Model/AccountVerifyResponseAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public function getEmailAddress()
*
* @param string|null $email_address the email address associated with the Account
*
* @return self
* @return static
*/
public function setEmailAddress(?string $email_address)
{
Expand Down
14 changes: 7 additions & 7 deletions sdks/php/src/Model/ApiAppCreateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public function getDomains()
*
* @param string[] $domains the domain names the ApiApp will be associated with
*
* @return self
* @return static
*/
public function setDomains(array $domains)
{
Expand Down Expand Up @@ -403,7 +403,7 @@ public function getName()
*
* @param string $name the name you want to assign to the ApiApp
*
* @return self
* @return static
*/
public function setName(string $name)
{
Expand All @@ -430,7 +430,7 @@ public function getCallbackUrl()
*
* @param string|null $callback_url the URL at which the ApiApp should receive event callbacks
*
* @return self
* @return static
*/
public function setCallbackUrl(?string $callback_url)
{
Expand All @@ -457,7 +457,7 @@ public function getCustomLogoFile()
*
* @param SplFileObject|null $custom_logo_file An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)
*
* @return self
* @return static
*/
public function setCustomLogoFile(?SplFileObject $custom_logo_file)
{
Expand All @@ -484,7 +484,7 @@ public function getOauth()
*
* @param SubOAuth|null $oauth oauth
*
* @return self
* @return static
*/
public function setOauth(?SubOAuth $oauth)
{
Expand All @@ -511,7 +511,7 @@ public function getOptions()
*
* @param SubOptions|null $options options
*
* @return self
* @return static
*/
public function setOptions(?SubOptions $options)
{
Expand All @@ -538,7 +538,7 @@ public function getWhiteLabelingOptions()
*
* @param SubWhiteLabelingOptions|null $white_labeling_options white_labeling_options
*
* @return self
* @return static
*/
public function setWhiteLabelingOptions(?SubWhiteLabelingOptions $white_labeling_options)
{
Expand Down
4 changes: 2 additions & 2 deletions sdks/php/src/Model/ApiAppGetResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public function getApiApp()
*
* @param ApiAppResponse $api_app api_app
*
* @return self
* @return static
*/
public function setApiApp(ApiAppResponse $api_app)
{
Expand All @@ -349,7 +349,7 @@ public function getWarnings()
*
* @param WarningResponse[]|null $warnings a list of warnings
*
* @return self
* @return static
*/
public function setWarnings(?array $warnings)
{
Expand Down
Loading