diff --git a/src/Client/Auth/Account.php b/src/Client/Auth/Account.php index 1fc100c6..5999676a 100644 --- a/src/Client/Auth/Account.php +++ b/src/Client/Auth/Account.php @@ -123,7 +123,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; diff --git a/src/Client/Auth/Link.php b/src/Client/Auth/Link.php index 2e1f9536..eb0f6538 100644 --- a/src/Client/Auth/Link.php +++ b/src/Client/Auth/Link.php @@ -111,7 +111,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['rel'] = isset($data['rel']) ? $data['rel'] : null; $this->container['href'] = isset($data['href']) ? $data['href'] : null; diff --git a/src/Client/Auth/OAuthToken.php b/src/Client/Auth/OAuthToken.php index 368c54ab..a607d19c 100644 --- a/src/Client/Auth/OAuthToken.php +++ b/src/Client/Auth/OAuthToken.php @@ -115,7 +115,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_token'] = isset($data['access_token']) ? $data['access_token'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Client/Auth/Organization.php b/src/Client/Auth/Organization.php index 480f762c..5a612839 100644 --- a/src/Client/Auth/Organization.php +++ b/src/Client/Auth/Organization.php @@ -111,7 +111,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['organization_id'] = isset($data['organization_id']) ? $data['organization_id'] : null; $this->container['links'] = isset($data['links']) ? $data['links'] : null; diff --git a/src/Client/Auth/UserInfo.php b/src/Client/Auth/UserInfo.php index f2f6ee6c..6ecbb3e8 100644 --- a/src/Client/Auth/UserInfo.php +++ b/src/Client/Auth/UserInfo.php @@ -136,7 +136,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sub'] = isset($data['sub']) ? $data['sub'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; @@ -203,7 +203,7 @@ public function getEmail() /** * Sets email - * @param string $email + * @param string $email * @return $this */ public function setEmail($email) diff --git a/src/Configuration.php b/src/Configuration.php index 3fa3b185..87bcb851 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -182,85 +182,85 @@ class Configuration /** * Constructor */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->tempFolderPath = sys_get_temp_dir(); if(isset($data["apiKeys"])) { $this->apiKeys = $data["apiKeys"]; - } + } if(isset($data["apiKeyPrefixes"])) { $this->apiKeyPrefixes = $data["apiKeyPrefixes"]; - } + } if(isset($data["accessToken"])) { $this->accessToken = $data["accessToken"]; - } + } if(isset($data["username"])) { $this->username = $data["username"]; - } + } if(isset($data["password"])) { $this->password = $data["password"]; - } + } if(isset($data["defaultHeaders"])) { $this->defaultHeaders = $data["defaultHeaders"]; - } + } if(isset($data["host"])) { $this->host = $data["host"]; - } + } if(isset($data["curlTimeout"])) { $this->curlTimeout = $data["curlTimeout"]; - } + } if(isset($data["curlConnectTimeout"])) { $this->curlConnectTimeout = $data["curlConnectTimeout"]; - } + } if(isset($data["userAgent"])) { $this->userAgent = $data["userAgent"]; - } + } if(isset($data["debug"])) { $this->debug = $data["debug"]; - } + } if(isset($data["debugFile"])) { $this->debugFile = $data["debugFile"]; - } + } if(isset($data["tempFolderPath"])) { $this->tempFolderPath = $data["tempFolderPath"]; - } + } if(isset($data["sslVerification"])) { $this->sslVerification = $data["sslVerification"]; - } + } if(isset($data["proxyHost"])) { $this->proxyHost = $data["proxyHost"]; - } + } if(isset($data["proxyPort"])) { $this->proxyPort = $data["proxyPort"]; - } + } if(isset($data["proxyType"])) { $this->proxyType = $data["proxyType"]; - } + } if(isset($data["proxyUser"])) { $this->proxyUser = $data["proxyUser"]; - } + } if(isset($data["proxyPassword"])) { $this->proxyPassword = $data["proxyPassword"]; - } + } } /** diff --git a/src/Model/AccessCodeFormat.php b/src/Model/AccessCodeFormat.php index 6b486fb4..64bf4923 100644 --- a/src/Model/AccessCodeFormat.php +++ b/src/Model/AccessCodeFormat.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['format_required'] = isset($data['format_required']) ? $data['format_required'] : null; $this->container['format_required_metadata'] = isset($data['format_required_metadata']) ? $data['format_required_metadata'] : null; @@ -274,7 +274,7 @@ public function getFormatRequired() /** * Sets format_required * - * @param ?string $format_required + * @param ?string $format_required * * @return $this */ @@ -322,7 +322,7 @@ public function getLetterRequired() /** * Sets letter_required * - * @param ?string $letter_required + * @param ?string $letter_required * * @return $this */ @@ -370,7 +370,7 @@ public function getMinimumLength() /** * Sets minimum_length * - * @param ?string $minimum_length + * @param ?string $minimum_length * * @return $this */ @@ -418,7 +418,7 @@ public function getNumberRequired() /** * Sets number_required * - * @param ?string $number_required + * @param ?string $number_required * * @return $this */ @@ -466,7 +466,7 @@ public function getSpecialCharacterRequired() /** * Sets special_character_required * - * @param ?string $special_character_required + * @param ?string $special_character_required * * @return $this */ diff --git a/src/Model/AccountAddress.php b/src/Model/AccountAddress.php index 9d3a96c6..513993f1 100644 --- a/src/Model/AccountAddress.php +++ b/src/Model/AccountAddress.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address1'] = isset($data['address1']) ? $data['address1'] : null; $this->container['address2'] = isset($data['address2']) ? $data['address2'] : null; @@ -382,7 +382,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -406,7 +406,7 @@ public function getFax() /** * Sets fax * - * @param ?string $fax + * @param ?string $fax * * @return $this */ @@ -454,7 +454,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -478,7 +478,7 @@ public function getPhone() /** * Sets phone * - * @param ?string $phone + * @param ?string $phone * * @return $this */ @@ -502,7 +502,7 @@ public function getPostalCode() /** * Sets postal_code * - * @param ?string $postal_code + * @param ?string $postal_code * * @return $this */ diff --git a/src/Model/AccountBillingPlan.php b/src/Model/AccountBillingPlan.php index c1c020c5..99ed1e68 100644 --- a/src/Model/AccountBillingPlan.php +++ b/src/Model/AccountBillingPlan.php @@ -318,7 +318,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add_ons'] = isset($data['add_ons']) ? $data['add_ons'] : null; $this->container['app_store_receipt_expiration_date'] = isset($data['app_store_receipt_expiration_date']) ? $data['app_store_receipt_expiration_date'] : null; diff --git a/src/Model/AccountBillingPlanResponse.php b/src/Model/AccountBillingPlanResponse.php index 438e96c3..e88400e0 100644 --- a/src/Model/AccountBillingPlanResponse.php +++ b/src/Model/AccountBillingPlanResponse.php @@ -238,7 +238,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_address'] = isset($data['billing_address']) ? $data['billing_address'] : null; $this->container['billing_address_is_credit_card_address'] = isset($data['billing_address_is_credit_card_address']) ? $data['billing_address_is_credit_card_address'] : null; diff --git a/src/Model/AccountIdentityInputOption.php b/src/Model/AccountIdentityInputOption.php index 9bbd106a..4321fbc0 100644 --- a/src/Model/AccountIdentityInputOption.php +++ b/src/Model/AccountIdentityInputOption.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_required'] = isset($data['is_required']) ? $data['is_required'] : null; $this->container['option_name'] = isset($data['option_name']) ? $data['option_name'] : null; @@ -231,7 +231,7 @@ public function getIsRequired() /** * Sets is_required * - * @param ?bool $is_required + * @param ?bool $is_required * * @return $this */ @@ -255,7 +255,7 @@ public function getOptionName() /** * Sets option_name * - * @param ?string $option_name + * @param ?string $option_name * * @return $this */ @@ -279,7 +279,7 @@ public function getValueType() /** * Sets value_type * - * @param ?string $value_type + * @param ?string $value_type * * @return $this */ diff --git a/src/Model/AccountIdentityVerificationResponse.php b/src/Model/AccountIdentityVerificationResponse.php index 31b23844..434245db 100644 --- a/src/Model/AccountIdentityVerificationResponse.php +++ b/src/Model/AccountIdentityVerificationResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['identity_verification'] = isset($data['identity_verification']) ? $data['identity_verification'] : null; } @@ -219,7 +219,7 @@ public function getIdentityVerification() /** * Sets identity_verification * - * @param \DocuSign\eSign\Model\AccountIdentityVerificationWorkflow[] $identity_verification + * @param \DocuSign\eSign\Model\AccountIdentityVerificationWorkflow[] $identity_verification * * @return $this */ diff --git a/src/Model/AccountIdentityVerificationStep.php b/src/Model/AccountIdentityVerificationStep.php index 3992df32..3e8df667 100644 --- a/src/Model/AccountIdentityVerificationStep.php +++ b/src/Model/AccountIdentityVerificationStep.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; @@ -226,7 +226,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -250,7 +250,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/AccountIdentityVerificationWorkflow.php b/src/Model/AccountIdentityVerificationWorkflow.php index 8d2a5f24..b2216d12 100644 --- a/src/Model/AccountIdentityVerificationWorkflow.php +++ b/src/Model/AccountIdentityVerificationWorkflow.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['default_description'] = isset($data['default_description']) ? $data['default_description'] : null; $this->container['default_name'] = isset($data['default_name']) ? $data['default_name'] : null; @@ -274,7 +274,7 @@ public function getDefaultDescription() /** * Sets default_description * - * @param ?string $default_description + * @param ?string $default_description * * @return $this */ @@ -298,7 +298,7 @@ public function getDefaultName() /** * Sets default_name * - * @param ?string $default_name + * @param ?string $default_name * * @return $this */ @@ -322,7 +322,7 @@ public function getInputOptions() /** * Sets input_options * - * @param \DocuSign\eSign\Model\AccountIdentityInputOption[] $input_options + * @param \DocuSign\eSign\Model\AccountIdentityInputOption[] $input_options * * @return $this */ @@ -346,7 +346,7 @@ public function getIsDisabled() /** * Sets is_disabled * - * @param ?string $is_disabled + * @param ?string $is_disabled * * @return $this */ @@ -370,7 +370,7 @@ public function getOwnerType() /** * Sets owner_type * - * @param ?string $owner_type + * @param ?string $owner_type * * @return $this */ @@ -418,7 +418,7 @@ public function getSteps() /** * Sets steps * - * @param \DocuSign\eSign\Model\AccountIdentityVerificationStep[] $steps + * @param \DocuSign\eSign\Model\AccountIdentityVerificationStep[] $steps * * @return $this */ @@ -442,7 +442,7 @@ public function getWorkflowId() /** * Sets workflow_id * - * @param ?string $workflow_id + * @param ?string $workflow_id * * @return $this */ @@ -466,7 +466,7 @@ public function getWorkflowLabel() /** * Sets workflow_label * - * @param ?string $workflow_label + * @param ?string $workflow_label * * @return $this */ @@ -490,7 +490,7 @@ public function getWorkflowResourceKey() /** * Sets workflow_resource_key * - * @param ?string $workflow_resource_key + * @param ?string $workflow_resource_key * * @return $this */ diff --git a/src/Model/AccountInformation.php b/src/Model/AccountInformation.php index 05aaa77c..a6c07329 100644 --- a/src/Model/AccountInformation.php +++ b/src/Model/AccountInformation.php @@ -373,7 +373,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id_guid'] = isset($data['account_id_guid']) ? $data['account_id_guid'] : null; $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; diff --git a/src/Model/AccountMinimumPasswordLength.php b/src/Model/AccountMinimumPasswordLength.php index 0cd912a1..866ded8b 100644 --- a/src/Model/AccountMinimumPasswordLength.php +++ b/src/Model/AccountMinimumPasswordLength.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum_length'] = isset($data['maximum_length']) ? $data['maximum_length'] : null; $this->container['minimum_length'] = isset($data['minimum_length']) ? $data['minimum_length'] : null; diff --git a/src/Model/AccountNotification.php b/src/Model/AccountNotification.php index 5e69a9c9..c855a078 100644 --- a/src/Model/AccountNotification.php +++ b/src/Model/AccountNotification.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expirations'] = isset($data['expirations']) ? $data['expirations'] : null; $this->container['reminders'] = isset($data['reminders']) ? $data['reminders'] : null; @@ -280,7 +280,7 @@ public function getUserOverrideEnabled() /** * Sets user_override_enabled * - * @param ?string $user_override_enabled + * @param ?string $user_override_enabled * * @return $this */ diff --git a/src/Model/AccountPasswordExpirePasswordDays.php b/src/Model/AccountPasswordExpirePasswordDays.php index 4683242e..95029b9d 100644 --- a/src/Model/AccountPasswordExpirePasswordDays.php +++ b/src/Model/AccountPasswordExpirePasswordDays.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum_days'] = isset($data['maximum_days']) ? $data['maximum_days'] : null; $this->container['minimum_days'] = isset($data['minimum_days']) ? $data['minimum_days'] : null; @@ -225,7 +225,7 @@ public function getMaximumDays() /** * Sets maximum_days * - * @param ?string $maximum_days + * @param ?string $maximum_days * * @return $this */ @@ -249,7 +249,7 @@ public function getMinimumDays() /** * Sets minimum_days * - * @param ?string $minimum_days + * @param ?string $minimum_days * * @return $this */ diff --git a/src/Model/AccountPasswordLockoutDurationMinutes.php b/src/Model/AccountPasswordLockoutDurationMinutes.php index 3ddda8b1..f8a45d39 100644 --- a/src/Model/AccountPasswordLockoutDurationMinutes.php +++ b/src/Model/AccountPasswordLockoutDurationMinutes.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum_minutes'] = isset($data['maximum_minutes']) ? $data['maximum_minutes'] : null; $this->container['minimum_minutes'] = isset($data['minimum_minutes']) ? $data['minimum_minutes'] : null; diff --git a/src/Model/AccountPasswordLockoutDurationType.php b/src/Model/AccountPasswordLockoutDurationType.php index 160a94d4..60ca59df 100644 --- a/src/Model/AccountPasswordLockoutDurationType.php +++ b/src/Model/AccountPasswordLockoutDurationType.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['options'] = isset($data['options']) ? $data['options'] : null; } @@ -219,7 +219,7 @@ public function getOptions() /** * Sets options * - * @param ?string[] $options + * @param ?string[] $options * * @return $this */ diff --git a/src/Model/AccountPasswordMinimumPasswordAgeDays.php b/src/Model/AccountPasswordMinimumPasswordAgeDays.php index c0a7c7da..8f2ba9c9 100644 --- a/src/Model/AccountPasswordMinimumPasswordAgeDays.php +++ b/src/Model/AccountPasswordMinimumPasswordAgeDays.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum_age'] = isset($data['maximum_age']) ? $data['maximum_age'] : null; $this->container['minimum_age'] = isset($data['minimum_age']) ? $data['minimum_age'] : null; diff --git a/src/Model/AccountPasswordQuestionsRequired.php b/src/Model/AccountPasswordQuestionsRequired.php index 63071c6a..6eb411e9 100644 --- a/src/Model/AccountPasswordQuestionsRequired.php +++ b/src/Model/AccountPasswordQuestionsRequired.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum_questions'] = isset($data['maximum_questions']) ? $data['maximum_questions'] : null; $this->container['minimum_questions'] = isset($data['minimum_questions']) ? $data['minimum_questions'] : null; @@ -226,7 +226,7 @@ public function getMaximumQuestions() /** * Sets maximum_questions * - * @param ?string $maximum_questions + * @param ?string $maximum_questions * * @return $this */ @@ -250,7 +250,7 @@ public function getMinimumQuestions() /** * Sets minimum_questions * - * @param ?string $minimum_questions + * @param ?string $minimum_questions * * @return $this */ diff --git a/src/Model/AccountPasswordRules.php b/src/Model/AccountPasswordRules.php index a63862cd..832efca8 100644 --- a/src/Model/AccountPasswordRules.php +++ b/src/Model/AccountPasswordRules.php @@ -255,9 +255,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -272,7 +272,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expire_password'] = isset($data['expire_password']) ? $data['expire_password'] : null; $this->container['expire_password_days'] = isset($data['expire_password_days']) ? $data['expire_password_days'] : null; @@ -333,7 +333,7 @@ public function getExpirePassword() /** * Sets expire_password * - * @param ?string $expire_password + * @param ?string $expire_password * * @return $this */ @@ -357,7 +357,7 @@ public function getExpirePasswordDays() /** * Sets expire_password_days * - * @param ?string $expire_password_days + * @param ?string $expire_password_days * * @return $this */ @@ -405,7 +405,7 @@ public function getLockoutDurationMinutes() /** * Sets lockout_duration_minutes * - * @param ?string $lockout_duration_minutes + * @param ?string $lockout_duration_minutes * * @return $this */ @@ -453,7 +453,7 @@ public function getLockoutDurationType() /** * Sets lockout_duration_type * - * @param ?string $lockout_duration_type + * @param ?string $lockout_duration_type * * @return $this */ @@ -501,7 +501,7 @@ public function getMinimumPasswordAgeDays() /** * Sets minimum_password_age_days * - * @param ?string $minimum_password_age_days + * @param ?string $minimum_password_age_days * * @return $this */ @@ -549,7 +549,7 @@ public function getMinimumPasswordLength() /** * Sets minimum_password_length * - * @param ?string $minimum_password_length + * @param ?string $minimum_password_length * * @return $this */ @@ -597,7 +597,7 @@ public function getPasswordIncludeDigit() /** * Sets password_include_digit * - * @param ?string $password_include_digit + * @param ?string $password_include_digit * * @return $this */ @@ -621,7 +621,7 @@ public function getPasswordIncludeDigitOrSpecialCharacter() /** * Sets password_include_digit_or_special_character * - * @param ?string $password_include_digit_or_special_character + * @param ?string $password_include_digit_or_special_character * * @return $this */ @@ -645,7 +645,7 @@ public function getPasswordIncludeLowerCase() /** * Sets password_include_lower_case * - * @param ?string $password_include_lower_case + * @param ?string $password_include_lower_case * * @return $this */ @@ -669,7 +669,7 @@ public function getPasswordIncludeSpecialCharacter() /** * Sets password_include_special_character * - * @param ?string $password_include_special_character + * @param ?string $password_include_special_character * * @return $this */ @@ -693,7 +693,7 @@ public function getPasswordIncludeUpperCase() /** * Sets password_include_upper_case * - * @param ?string $password_include_upper_case + * @param ?string $password_include_upper_case * * @return $this */ @@ -717,7 +717,7 @@ public function getPasswordStrengthType() /** * Sets password_strength_type * - * @param ?string $password_strength_type + * @param ?string $password_strength_type * * @return $this */ @@ -765,7 +765,7 @@ public function getQuestionsRequired() /** * Sets questions_required * - * @param ?string $questions_required + * @param ?string $questions_required * * @return $this */ diff --git a/src/Model/AccountPasswordStrengthType.php b/src/Model/AccountPasswordStrengthType.php index ab9679e5..839996f5 100644 --- a/src/Model/AccountPasswordStrengthType.php +++ b/src/Model/AccountPasswordStrengthType.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['options'] = isset($data['options']) ? $data['options'] : null; } @@ -219,7 +219,7 @@ public function getOptions() /** * Sets options * - * @param \DocuSign\eSign\Model\AccountPasswordStrengthTypeOption[] $options + * @param \DocuSign\eSign\Model\AccountPasswordStrengthTypeOption[] $options * * @return $this */ diff --git a/src/Model/AccountPasswordStrengthTypeOption.php b/src/Model/AccountPasswordStrengthTypeOption.php index 5248a7e2..6d13ee45 100644 --- a/src/Model/AccountPasswordStrengthTypeOption.php +++ b/src/Model/AccountPasswordStrengthTypeOption.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['minimum_length'] = isset($data['minimum_length']) ? $data['minimum_length'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Model/AccountRoleSettings.php b/src/Model/AccountRoleSettings.php index adbc7745..d10a775b 100644 --- a/src/Model/AccountRoleSettings.php +++ b/src/Model/AccountRoleSettings.php @@ -611,9 +611,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -628,7 +628,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_account_management'] = isset($data['allow_account_management']) ? $data['allow_account_management'] : null; $this->container['allow_account_management_metadata'] = isset($data['allow_account_management_metadata']) ? $data['allow_account_management_metadata'] : null; @@ -760,7 +760,7 @@ public function getAllowAccountManagement() /** * Sets allow_account_management * - * @param ?string $allow_account_management + * @param ?string $allow_account_management * * @return $this */ @@ -808,7 +808,7 @@ public function getAllowApiAccess() /** * Sets allow_api_access * - * @param ?string $allow_api_access + * @param ?string $allow_api_access * * @return $this */ @@ -856,7 +856,7 @@ public function getAllowApiAccessToAccount() /** * Sets allow_api_access_to_account * - * @param ?string $allow_api_access_to_account + * @param ?string $allow_api_access_to_account * * @return $this */ @@ -904,7 +904,7 @@ public function getAllowApiSendingOnBehalfOfOthers() /** * Sets allow_api_sending_on_behalf_of_others * - * @param ?string $allow_api_sending_on_behalf_of_others + * @param ?string $allow_api_sending_on_behalf_of_others * * @return $this */ @@ -952,7 +952,7 @@ public function getAllowApiSequentialSigning() /** * Sets allow_api_sequential_signing * - * @param ?string $allow_api_sequential_signing + * @param ?string $allow_api_sequential_signing * * @return $this */ @@ -1000,7 +1000,7 @@ public function getAllowAutoTagging() /** * Sets allow_auto_tagging * - * @param ?string $allow_auto_tagging + * @param ?string $allow_auto_tagging * * @return $this */ @@ -1048,7 +1048,7 @@ public function getAllowBulkSending() /** * Sets allow_bulk_sending * - * @param ?string $allow_bulk_sending + * @param ?string $allow_bulk_sending * * @return $this */ @@ -1096,7 +1096,7 @@ public function getAllowDocuSignDesktopClient() /** * Sets allow_docu_sign_desktop_client * - * @param ?string $allow_docu_sign_desktop_client + * @param ?string $allow_docu_sign_desktop_client * * @return $this */ @@ -1144,7 +1144,7 @@ public function getAllowedAddressBookAccess() /** * Sets allowed_address_book_access * - * @param ?string $allowed_address_book_access + * @param ?string $allowed_address_book_access * * @return $this */ @@ -1192,7 +1192,7 @@ public function getAllowedClickwrapsAccess() /** * Sets allowed_clickwraps_access * - * @param ?string $allowed_clickwraps_access + * @param ?string $allowed_clickwraps_access * * @return $this */ @@ -1216,7 +1216,7 @@ public function getAllowedClickwrapsAccessMetadata() /** * Sets allowed_clickwraps_access_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_clickwraps_access_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_clickwraps_access_metadata * * @return $this */ @@ -1240,7 +1240,7 @@ public function getAllowedDocumentTemplateLibraryAccess() /** * Sets allowed_document_template_library_access * - * @param ?string $allowed_document_template_library_access + * @param ?string $allowed_document_template_library_access * * @return $this */ @@ -1264,7 +1264,7 @@ public function getAllowedDocumentTemplateLibraryAccessMetadata() /** * Sets allowed_document_template_library_access_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_document_template_library_access_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_document_template_library_access_metadata * * @return $this */ @@ -1288,7 +1288,7 @@ public function getAllowedOrchestrationAccess() /** * Sets allowed_orchestration_access * - * @param ?string $allowed_orchestration_access + * @param ?string $allowed_orchestration_access * * @return $this */ @@ -1312,7 +1312,7 @@ public function getAllowedOrchestrationAccessMetadata() /** * Sets allowed_orchestration_access_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_orchestration_access_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allowed_orchestration_access_metadata * * @return $this */ @@ -1336,7 +1336,7 @@ public function getAllowedTemplateAccess() /** * Sets allowed_template_access * - * @param ?string $allowed_template_access + * @param ?string $allowed_template_access * * @return $this */ @@ -1384,7 +1384,7 @@ public function getAllowedToBeEnvelopeTransferRecipient() /** * Sets allowed_to_be_envelope_transfer_recipient * - * @param ?string $allowed_to_be_envelope_transfer_recipient + * @param ?string $allowed_to_be_envelope_transfer_recipient * * @return $this */ @@ -1432,7 +1432,7 @@ public function getAllowEnvelopeSending() /** * Sets allow_envelope_sending * - * @param ?string $allow_envelope_sending + * @param ?string $allow_envelope_sending * * @return $this */ @@ -1480,7 +1480,7 @@ public function getAllowESealRecipients() /** * Sets allow_e_seal_recipients * - * @param ?string $allow_e_seal_recipients + * @param ?string $allow_e_seal_recipients * * @return $this */ @@ -1528,7 +1528,7 @@ public function getAllowPowerFormsAdminToAccessAllPowerFormEnvelopes() /** * Sets allow_power_forms_admin_to_access_all_power_form_envelopes * - * @param ?string $allow_power_forms_admin_to_access_all_power_form_envelopes + * @param ?string $allow_power_forms_admin_to_access_all_power_form_envelopes * * @return $this */ @@ -1576,7 +1576,7 @@ public function getAllowSendersToSetRecipientEmailLanguage() /** * Sets allow_senders_to_set_recipient_email_language * - * @param ?string $allow_senders_to_set_recipient_email_language + * @param ?string $allow_senders_to_set_recipient_email_language * * @return $this */ @@ -1624,7 +1624,7 @@ public function getAllowSignerAttachments() /** * Sets allow_signer_attachments * - * @param ?string $allow_signer_attachments + * @param ?string $allow_signer_attachments * * @return $this */ @@ -1672,7 +1672,7 @@ public function getAllowSupplementalDocuments() /** * Sets allow_supplemental_documents * - * @param ?string $allow_supplemental_documents + * @param ?string $allow_supplemental_documents * * @return $this */ @@ -1720,7 +1720,7 @@ public function getAllowTaggingInSendAndCorrect() /** * Sets allow_tagging_in_send_and_correct * - * @param ?string $allow_tagging_in_send_and_correct + * @param ?string $allow_tagging_in_send_and_correct * * @return $this */ @@ -1768,7 +1768,7 @@ public function getAllowTransactions() /** * Sets allow_transactions * - * @param ?string $allow_transactions + * @param ?string $allow_transactions * * @return $this */ @@ -1792,7 +1792,7 @@ public function getAllowTransactionsMetadata() /** * Sets allow_transactions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_metadata * * @return $this */ @@ -1816,7 +1816,7 @@ public function getAllowVaulting() /** * Sets allow_vaulting * - * @param ?string $allow_vaulting + * @param ?string $allow_vaulting * * @return $this */ @@ -1864,7 +1864,7 @@ public function getAllowWetSigningOverride() /** * Sets allow_wet_signing_override * - * @param ?string $allow_wet_signing_override + * @param ?string $allow_wet_signing_override * * @return $this */ @@ -1912,7 +1912,7 @@ public function getCanCreateTransaction() /** * Sets can_create_transaction * - * @param ?string $can_create_transaction + * @param ?string $can_create_transaction * * @return $this */ @@ -1936,7 +1936,7 @@ public function getCanCreateTransactionMetadata() /** * Sets can_create_transaction_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_create_transaction_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_create_transaction_metadata * * @return $this */ @@ -1960,7 +1960,7 @@ public function getCanCreateWorkspaces() /** * Sets can_create_workspaces * - * @param ?string $can_create_workspaces + * @param ?string $can_create_workspaces * * @return $this */ @@ -2008,7 +2008,7 @@ public function getCanDeleteDocumentsInTransaction() /** * Sets can_delete_documents_in_transaction * - * @param ?string $can_delete_documents_in_transaction + * @param ?string $can_delete_documents_in_transaction * * @return $this */ @@ -2032,7 +2032,7 @@ public function getCanDeleteDocumentsInTransactionMetadata() /** * Sets can_delete_documents_in_transaction_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_delete_documents_in_transaction_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_delete_documents_in_transaction_metadata * * @return $this */ @@ -2056,7 +2056,7 @@ public function getCanDeleteTransaction() /** * Sets can_delete_transaction * - * @param ?string $can_delete_transaction + * @param ?string $can_delete_transaction * * @return $this */ @@ -2080,7 +2080,7 @@ public function getCanDeleteTransactionMetadata() /** * Sets can_delete_transaction_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_delete_transaction_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_delete_transaction_metadata * * @return $this */ @@ -2104,7 +2104,7 @@ public function getCanSendEnvelopesViaSms() /** * Sets can_send_envelopes_via_sms * - * @param ?string $can_send_envelopes_via_sms + * @param ?string $can_send_envelopes_via_sms * * @return $this */ @@ -2128,7 +2128,7 @@ public function getCanSendEnvelopesViaSmsMetadata() /** * Sets can_send_envelopes_via_sms_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_send_envelopes_via_sms_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_send_envelopes_via_sms_metadata * * @return $this */ @@ -2152,7 +2152,7 @@ public function getDisableDocumentUpload() /** * Sets disable_document_upload * - * @param ?string $disable_document_upload + * @param ?string $disable_document_upload * * @return $this */ @@ -2200,7 +2200,7 @@ public function getDisableOtherActions() /** * Sets disable_other_actions * - * @param ?string $disable_other_actions + * @param ?string $disable_other_actions * * @return $this */ @@ -2248,7 +2248,7 @@ public function getEnableApiRequestLogging() /** * Sets enable_api_request_logging * - * @param ?string $enable_api_request_logging + * @param ?string $enable_api_request_logging * * @return $this */ @@ -2296,7 +2296,7 @@ public function getEnableKeyTermsSuggestionsByDocumentType() /** * Sets enable_key_terms_suggestions_by_document_type * - * @param ?string $enable_key_terms_suggestions_by_document_type + * @param ?string $enable_key_terms_suggestions_by_document_type * * @return $this */ @@ -2320,7 +2320,7 @@ public function getEnableKeyTermsSuggestionsByDocumentTypeMetadata() /** * Sets enable_key_terms_suggestions_by_document_type_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_key_terms_suggestions_by_document_type_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_key_terms_suggestions_by_document_type_metadata * * @return $this */ @@ -2344,7 +2344,7 @@ public function getEnableRecipientViewingNotifications() /** * Sets enable_recipient_viewing_notifications * - * @param ?string $enable_recipient_viewing_notifications + * @param ?string $enable_recipient_viewing_notifications * * @return $this */ @@ -2392,7 +2392,7 @@ public function getEnableSequentialSigningInterface() /** * Sets enable_sequential_signing_interface * - * @param ?string $enable_sequential_signing_interface + * @param ?string $enable_sequential_signing_interface * * @return $this */ @@ -2440,7 +2440,7 @@ public function getEnableTransactionPointIntegration() /** * Sets enable_transaction_point_integration * - * @param ?string $enable_transaction_point_integration + * @param ?string $enable_transaction_point_integration * * @return $this */ @@ -2488,7 +2488,7 @@ public function getPowerFormRole() /** * Sets power_form_role * - * @param ?string $power_form_role + * @param ?string $power_form_role * * @return $this */ @@ -2536,7 +2536,7 @@ public function getReceiveCompletedSelfSignedDocumentsAsEmailLinks() /** * Sets receive_completed_self_signed_documents_as_email_links * - * @param ?string $receive_completed_self_signed_documents_as_email_links + * @param ?string $receive_completed_self_signed_documents_as_email_links * * @return $this */ @@ -2608,7 +2608,7 @@ public function getSupplementalDocumentsMustAccept() /** * Sets supplemental_documents_must_accept * - * @param ?string $supplemental_documents_must_accept + * @param ?string $supplemental_documents_must_accept * * @return $this */ @@ -2656,7 +2656,7 @@ public function getSupplementalDocumentsMustRead() /** * Sets supplemental_documents_must_read * - * @param ?string $supplemental_documents_must_read + * @param ?string $supplemental_documents_must_read * * @return $this */ @@ -2704,7 +2704,7 @@ public function getSupplementalDocumentsMustView() /** * Sets supplemental_documents_must_view * - * @param ?string $supplemental_documents_must_view + * @param ?string $supplemental_documents_must_view * * @return $this */ @@ -2752,7 +2752,7 @@ public function getUseNewDocuSignExperienceInterface() /** * Sets use_new_docu_sign_experience_interface * - * @param ?string $use_new_docu_sign_experience_interface + * @param ?string $use_new_docu_sign_experience_interface * * @return $this */ @@ -2800,7 +2800,7 @@ public function getUseNewSendingInterface() /** * Sets use_new_sending_interface * - * @param ?string $use_new_sending_interface + * @param ?string $use_new_sending_interface * * @return $this */ @@ -2848,7 +2848,7 @@ public function getVaultingMode() /** * Sets vaulting_mode * - * @param ?string $vaulting_mode + * @param ?string $vaulting_mode * * @return $this */ @@ -2896,7 +2896,7 @@ public function getWebForms() /** * Sets web_forms * - * @param ?string $web_forms + * @param ?string $web_forms * * @return $this */ @@ -2920,7 +2920,7 @@ public function getWebFormsMetadata() /** * Sets web_forms_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $web_forms_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $web_forms_metadata * * @return $this */ diff --git a/src/Model/AccountSeals.php b/src/Model/AccountSeals.php index edbf8b86..e70a1054 100644 --- a/src/Model/AccountSeals.php +++ b/src/Model/AccountSeals.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['seals'] = isset($data['seals']) ? $data['seals'] : null; } @@ -219,7 +219,7 @@ public function getSeals() /** * Sets seals * - * @param \DocuSign\eSign\Model\SealIdentifier[] $seals + * @param \DocuSign\eSign\Model\SealIdentifier[] $seals * * @return $this */ diff --git a/src/Model/AccountSettingsInformation.php b/src/Model/AccountSettingsInformation.php index 415d831d..d2693fae 100644 --- a/src/Model/AccountSettingsInformation.php +++ b/src/Model/AccountSettingsInformation.php @@ -4271,9 +4271,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -4288,7 +4288,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code_format'] = isset($data['access_code_format']) ? $data['access_code_format'] : null; $this->container['account_date_time_format'] = isset($data['account_date_time_format']) ? $data['account_date_time_format'] : null; @@ -5176,7 +5176,7 @@ public function getAccountDateTimeFormat() /** * Sets account_date_time_format * - * @param ?string $account_date_time_format + * @param ?string $account_date_time_format * * @return $this */ @@ -5224,7 +5224,7 @@ public function getAccountDefaultLanguage() /** * Sets account_default_language * - * @param ?string $account_default_language + * @param ?string $account_default_language * * @return $this */ @@ -5248,7 +5248,7 @@ public function getAccountDefaultLanguageMetadata() /** * Sets account_default_language_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $account_default_language_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $account_default_language_metadata * * @return $this */ @@ -5272,7 +5272,7 @@ public function getAccountName() /** * Sets account_name * - * @param ?string $account_name + * @param ?string $account_name * * @return $this */ @@ -5368,7 +5368,7 @@ public function getAdoptSigConfig() /** * Sets adopt_sig_config * - * @param ?string $adopt_sig_config + * @param ?string $adopt_sig_config * * @return $this */ @@ -5416,7 +5416,7 @@ public function getAdvancedCorrect() /** * Sets advanced_correct * - * @param ?string $advanced_correct + * @param ?string $advanced_correct * * @return $this */ @@ -5464,7 +5464,7 @@ public function getAdvancedSearchEnableTabField() /** * Sets advanced_search_enable_tab_field * - * @param ?string $advanced_search_enable_tab_field + * @param ?string $advanced_search_enable_tab_field * * @return $this */ @@ -5488,7 +5488,7 @@ public function getAdvancedSearchEnableTabFieldMetadata() /** * Sets advanced_search_enable_tab_field_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_tab_field_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_tab_field_metadata * * @return $this */ @@ -5512,7 +5512,7 @@ public function getAdvancedSearchEnableTemplateIdField() /** * Sets advanced_search_enable_template_id_field * - * @param ?string $advanced_search_enable_template_id_field + * @param ?string $advanced_search_enable_template_id_field * * @return $this */ @@ -5536,7 +5536,7 @@ public function getAdvancedSearchEnableTemplateIdFieldMetadata() /** * Sets advanced_search_enable_template_id_field_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_template_id_field_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_template_id_field_metadata * * @return $this */ @@ -5560,7 +5560,7 @@ public function getAdvancedSearchEnableTemplateNameField() /** * Sets advanced_search_enable_template_name_field * - * @param ?string $advanced_search_enable_template_name_field + * @param ?string $advanced_search_enable_template_name_field * * @return $this */ @@ -5584,7 +5584,7 @@ public function getAdvancedSearchEnableTemplateNameFieldMetadata() /** * Sets advanced_search_enable_template_name_field_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_template_name_field_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $advanced_search_enable_template_name_field_metadata * * @return $this */ @@ -5608,7 +5608,7 @@ public function getAllowAccessCodeFormat() /** * Sets allow_access_code_format * - * @param ?string $allow_access_code_format + * @param ?string $allow_access_code_format * * @return $this */ @@ -5656,7 +5656,7 @@ public function getAllowAccountManagementGranular() /** * Sets allow_account_management_granular * - * @param ?string $allow_account_management_granular + * @param ?string $allow_account_management_granular * * @return $this */ @@ -5704,7 +5704,7 @@ public function getAllowAccountMemberNameChange() /** * Sets allow_account_member_name_change * - * @param ?string $allow_account_member_name_change + * @param ?string $allow_account_member_name_change * * @return $this */ @@ -5752,7 +5752,7 @@ public function getAllowAce() /** * Sets allow_ace * - * @param ?string $allow_ace + * @param ?string $allow_ace * * @return $this */ @@ -5776,7 +5776,7 @@ public function getAllowAceMetadata() /** * Sets allow_ace_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_ace_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_ace_metadata * * @return $this */ @@ -5800,7 +5800,7 @@ public function getAllowAdvancedRecipientRoutingConditional() /** * Sets allow_advanced_recipient_routing_conditional * - * @param ?string $allow_advanced_recipient_routing_conditional + * @param ?string $allow_advanced_recipient_routing_conditional * * @return $this */ @@ -5848,7 +5848,7 @@ public function getAllowAgentNameEmailEdit() /** * Sets allow_agent_name_email_edit * - * @param ?string $allow_agent_name_email_edit + * @param ?string $allow_agent_name_email_edit * * @return $this */ @@ -5896,7 +5896,7 @@ public function getAllowAgreementActions() /** * Sets allow_agreement_actions * - * @param ?string $allow_agreement_actions + * @param ?string $allow_agreement_actions * * @return $this */ @@ -5944,7 +5944,7 @@ public function getAllowAgreementOrchestrations() /** * Sets allow_agreement_orchestrations * - * @param ?string $allow_agreement_orchestrations + * @param ?string $allow_agreement_orchestrations * * @return $this */ @@ -5968,7 +5968,7 @@ public function getAllowAgreementOrchestrationsMetadata() /** * Sets allow_agreement_orchestrations_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_agreement_orchestrations_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_agreement_orchestrations_metadata * * @return $this */ @@ -5992,7 +5992,7 @@ public function getAllowAutoNavSettings() /** * Sets allow_auto_nav_settings * - * @param ?string $allow_auto_nav_settings + * @param ?string $allow_auto_nav_settings * * @return $this */ @@ -6040,7 +6040,7 @@ public function getAllowAutoTagging() /** * Sets allow_auto_tagging * - * @param ?string $allow_auto_tagging + * @param ?string $allow_auto_tagging * * @return $this */ @@ -6088,7 +6088,7 @@ public function getAllowBulkSend() /** * Sets allow_bulk_send * - * @param ?string $allow_bulk_send + * @param ?string $allow_bulk_send * * @return $this */ @@ -6136,7 +6136,7 @@ public function getAllowCdWithdraw() /** * Sets allow_cd_withdraw * - * @param ?string $allow_cd_withdraw + * @param ?string $allow_cd_withdraw * * @return $this */ @@ -6184,7 +6184,7 @@ public function getAllowConnectAgreementUi() /** * Sets allow_connect_agreement_ui * - * @param ?string $allow_connect_agreement_ui + * @param ?string $allow_connect_agreement_ui * * @return $this */ @@ -6208,7 +6208,7 @@ public function getAllowConnectAgreementUiMetadata() /** * Sets allow_connect_agreement_ui_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_connect_agreement_ui_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_connect_agreement_ui_metadata * * @return $this */ @@ -6232,7 +6232,7 @@ public function getAllowConnectAuthoritativeCopyReadyEventUi() /** * Sets allow_connect_authoritative_copy_ready_event_ui * - * @param ?string $allow_connect_authoritative_copy_ready_event_ui + * @param ?string $allow_connect_authoritative_copy_ready_event_ui * * @return $this */ @@ -6256,7 +6256,7 @@ public function getAllowConnectEnvelopeRemovedEvent() /** * Sets allow_connect_envelope_removed_event * - * @param ?string $allow_connect_envelope_removed_event + * @param ?string $allow_connect_envelope_removed_event * * @return $this */ @@ -6280,7 +6280,7 @@ public function getAllowConnectExtensionUi() /** * Sets allow_connect_extension_ui * - * @param ?string $allow_connect_extension_ui + * @param ?string $allow_connect_extension_ui * * @return $this */ @@ -6304,7 +6304,7 @@ public function getAllowConnectHttpListenerConfigs() /** * Sets allow_connect_http_listener_configs * - * @param ?string $allow_connect_http_listener_configs + * @param ?string $allow_connect_http_listener_configs * * @return $this */ @@ -6328,7 +6328,7 @@ public function getAllowConnectIdentityVerificationUi() /** * Sets allow_connect_identity_verification_ui * - * @param ?string $allow_connect_identity_verification_ui + * @param ?string $allow_connect_identity_verification_ui * * @return $this */ @@ -6352,7 +6352,7 @@ public function getAllowConnectOAuthUi() /** * Sets allow_connect_o_auth_ui * - * @param ?string $allow_connect_o_auth_ui + * @param ?string $allow_connect_o_auth_ui * * @return $this */ @@ -6376,7 +6376,7 @@ public function getAllowConnectSendFinishLater() /** * Sets allow_connect_send_finish_later * - * @param ?string $allow_connect_send_finish_later + * @param ?string $allow_connect_send_finish_later * * @return $this */ @@ -6424,7 +6424,7 @@ public function getAllowConnectUnifiedPayloadUi() /** * Sets allow_connect_unified_payload_ui * - * @param ?string $allow_connect_unified_payload_ui + * @param ?string $allow_connect_unified_payload_ui * * @return $this */ @@ -6448,7 +6448,7 @@ public function getAllowConsumerDisclosureOverride() /** * Sets allow_consumer_disclosure_override * - * @param ?string $allow_consumer_disclosure_override + * @param ?string $allow_consumer_disclosure_override * * @return $this */ @@ -6496,7 +6496,7 @@ public function getAllowDataDownload() /** * Sets allow_data_download * - * @param ?string $allow_data_download + * @param ?string $allow_data_download * * @return $this */ @@ -6568,7 +6568,7 @@ public function getAllowDelayedRoutingMetadata() /** * Sets allow_delayed_routing_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_delayed_routing_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_delayed_routing_metadata * * @return $this */ @@ -6592,7 +6592,7 @@ public function getAllowDelegatedSigning() /** * Sets allow_delegated_signing * - * @param ?string $allow_delegated_signing + * @param ?string $allow_delegated_signing * * @return $this */ @@ -6616,7 +6616,7 @@ public function getAllowDelegatedSigningMetadata() /** * Sets allow_delegated_signing_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_delegated_signing_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_delegated_signing_metadata * * @return $this */ @@ -6640,7 +6640,7 @@ public function getAllowDocGenDocuments() /** * Sets allow_doc_gen_documents * - * @param ?string $allow_doc_gen_documents + * @param ?string $allow_doc_gen_documents * * @return $this */ @@ -6664,7 +6664,7 @@ public function getAllowDocGenDocumentsMetadata() /** * Sets allow_doc_gen_documents_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_doc_gen_documents_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_doc_gen_documents_metadata * * @return $this */ @@ -6688,7 +6688,7 @@ public function getAllowDocumentDisclosures() /** * Sets allow_document_disclosures * - * @param ?string $allow_document_disclosures + * @param ?string $allow_document_disclosures * * @return $this */ @@ -6736,7 +6736,7 @@ public function getAllowDocumentsOnSignedEnvelopes() /** * Sets allow_documents_on_signed_envelopes * - * @param ?string $allow_documents_on_signed_envelopes + * @param ?string $allow_documents_on_signed_envelopes * * @return $this */ @@ -6784,7 +6784,7 @@ public function getAllowDocumentVisibility() /** * Sets allow_document_visibility * - * @param ?string $allow_document_visibility + * @param ?string $allow_document_visibility * * @return $this */ @@ -6832,7 +6832,7 @@ public function getAllowEditingEnvelopesOnBehalfOfOthers() /** * Sets allow_editing_envelopes_on_behalf_of_others * - * @param ?string $allow_editing_envelopes_on_behalf_of_others + * @param ?string $allow_editing_envelopes_on_behalf_of_others * * @return $this */ @@ -6856,7 +6856,7 @@ public function getAllowEditingEnvelopesOnBehalfOfOthersMetadata() /** * Sets allow_editing_envelopes_on_behalf_of_others_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_editing_envelopes_on_behalf_of_others_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_editing_envelopes_on_behalf_of_others_metadata * * @return $this */ @@ -6880,7 +6880,7 @@ public function getAllowEHankoStamps() /** * Sets allow_e_hanko_stamps * - * @param ?string $allow_e_hanko_stamps + * @param ?string $allow_e_hanko_stamps * * @return $this */ @@ -6928,7 +6928,7 @@ public function getAllowENoteEOriginal() /** * Sets allow_e_note_e_original * - * @param ?string $allow_e_note_e_original + * @param ?string $allow_e_note_e_original * * @return $this */ @@ -6976,7 +6976,7 @@ public function getAllowEnvelopeCorrect() /** * Sets allow_envelope_correct * - * @param ?string $allow_envelope_correct + * @param ?string $allow_envelope_correct * * @return $this */ @@ -7024,7 +7024,7 @@ public function getAllowEnvelopeCustodyTransfer() /** * Sets allow_envelope_custody_transfer * - * @param ?string $allow_envelope_custody_transfer + * @param ?string $allow_envelope_custody_transfer * * @return $this */ @@ -7072,7 +7072,7 @@ public function getAllowEnvelopeCustomFields() /** * Sets allow_envelope_custom_fields * - * @param ?string $allow_envelope_custom_fields + * @param ?string $allow_envelope_custom_fields * * @return $this */ @@ -7120,7 +7120,7 @@ public function getAllowEnvelopePublishReporting() /** * Sets allow_envelope_publish_reporting * - * @param ?string $allow_envelope_publish_reporting + * @param ?string $allow_envelope_publish_reporting * * @return $this */ @@ -7168,7 +7168,7 @@ public function getAllowEnvelopeReporting() /** * Sets allow_envelope_reporting * - * @param ?string $allow_envelope_reporting + * @param ?string $allow_envelope_reporting * * @return $this */ @@ -7216,7 +7216,7 @@ public function getAllowExpression() /** * Sets allow_expression * - * @param ?string $allow_expression + * @param ?string $allow_expression * * @return $this */ @@ -7264,7 +7264,7 @@ public function getAllowExpressSignerCertificate() /** * Sets allow_express_signer_certificate * - * @param ?string $allow_express_signer_certificate + * @param ?string $allow_express_signer_certificate * * @return $this */ @@ -7312,7 +7312,7 @@ public function getAllowExtendedSendingResourceFile() /** * Sets allow_extended_sending_resource_file * - * @param ?string $allow_extended_sending_resource_file + * @param ?string $allow_extended_sending_resource_file * * @return $this */ @@ -7360,7 +7360,7 @@ public function getAllowExternalLinkedAccounts() /** * Sets allow_external_linked_accounts * - * @param ?string $allow_external_linked_accounts + * @param ?string $allow_external_linked_accounts * * @return $this */ @@ -7384,7 +7384,7 @@ public function getAllowExternalLinkedAccountsMetadata() /** * Sets allow_external_linked_accounts_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_external_linked_accounts_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_external_linked_accounts_metadata * * @return $this */ @@ -7408,7 +7408,7 @@ public function getAllowExternalSignaturePad() /** * Sets allow_external_signature_pad * - * @param ?string $allow_external_signature_pad + * @param ?string $allow_external_signature_pad * * @return $this */ @@ -7456,7 +7456,7 @@ public function getAllowIdvForEuQualifiedSignatures() /** * Sets allow_idv_for_eu_qualified_signatures * - * @param ?string $allow_idv_for_eu_qualified_signatures + * @param ?string $allow_idv_for_eu_qualified_signatures * * @return $this */ @@ -7480,7 +7480,7 @@ public function getAllowIdvForEuQualifiedSignaturesMetadata() /** * Sets allow_idv_for_eu_qualified_signatures_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_for_eu_qualified_signatures_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_for_eu_qualified_signatures_metadata * * @return $this */ @@ -7504,7 +7504,7 @@ public function getAllowIdvLevel1() /** * Sets allow_idv_level1 * - * @param ?string $allow_idv_level1 + * @param ?string $allow_idv_level1 * * @return $this */ @@ -7552,7 +7552,7 @@ public function getAllowIdvLevel1Trial() /** * Sets allow_idv_level1_trial * - * @param ?string $allow_idv_level1_trial + * @param ?string $allow_idv_level1_trial * * @return $this */ @@ -7576,7 +7576,7 @@ public function getAllowIdvLevel1TrialMetadata() /** * Sets allow_idv_level1_trial_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level1_trial_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level1_trial_metadata * * @return $this */ @@ -7600,7 +7600,7 @@ public function getAllowIdvLevel2() /** * Sets allow_idv_level2 * - * @param ?string $allow_idv_level2 + * @param ?string $allow_idv_level2 * * @return $this */ @@ -7624,7 +7624,7 @@ public function getAllowIdvLevel2Metadata() /** * Sets allow_idv_level2_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level2_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level2_metadata * * @return $this */ @@ -7648,7 +7648,7 @@ public function getAllowIdvLevel3() /** * Sets allow_idv_level3 * - * @param ?string $allow_idv_level3 + * @param ?string $allow_idv_level3 * * @return $this */ @@ -7672,7 +7672,7 @@ public function getAllowIdvLevel3Metadata() /** * Sets allow_idv_level3_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level3_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_idv_level3_metadata * * @return $this */ @@ -7696,7 +7696,7 @@ public function getAllowIdvPlatform() /** * Sets allow_idv_platform * - * @param ?string $allow_idv_platform + * @param ?string $allow_idv_platform * * @return $this */ @@ -7744,7 +7744,7 @@ public function getAllowInPerson() /** * Sets allow_in_person * - * @param ?string $allow_in_person + * @param ?string $allow_in_person * * @return $this */ @@ -7840,7 +7840,7 @@ public function getAllowManagedStamps() /** * Sets allow_managed_stamps * - * @param ?string $allow_managed_stamps + * @param ?string $allow_managed_stamps * * @return $this */ @@ -7888,7 +7888,7 @@ public function getAllowManagingEnvelopesOnBehalfOfOthers() /** * Sets allow_managing_envelopes_on_behalf_of_others * - * @param ?string $allow_managing_envelopes_on_behalf_of_others + * @param ?string $allow_managing_envelopes_on_behalf_of_others * * @return $this */ @@ -7912,7 +7912,7 @@ public function getAllowManagingEnvelopesOnBehalfOfOthersMetadata() /** * Sets allow_managing_envelopes_on_behalf_of_others_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_managing_envelopes_on_behalf_of_others_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_managing_envelopes_on_behalf_of_others_metadata * * @return $this */ @@ -7984,7 +7984,7 @@ public function getAllowMemberTimeZone() /** * Sets allow_member_time_zone * - * @param ?string $allow_member_time_zone + * @param ?string $allow_member_time_zone * * @return $this */ @@ -8032,7 +8032,7 @@ public function getAllowMergeFields() /** * Sets allow_merge_fields * - * @param ?string $allow_merge_fields + * @param ?string $allow_merge_fields * * @return $this */ @@ -8080,7 +8080,7 @@ public function getAllowMultipleBrandProfiles() /** * Sets allow_multiple_brand_profiles * - * @param ?string $allow_multiple_brand_profiles + * @param ?string $allow_multiple_brand_profiles * * @return $this */ @@ -8128,7 +8128,7 @@ public function getAllowMultipleSignerAttachments() /** * Sets allow_multiple_signer_attachments * - * @param ?string $allow_multiple_signer_attachments + * @param ?string $allow_multiple_signer_attachments * * @return $this */ @@ -8176,7 +8176,7 @@ public function getAllowNonUsPhoneAuth() /** * Sets allow_non_us_phone_auth * - * @param ?string $allow_non_us_phone_auth + * @param ?string $allow_non_us_phone_auth * * @return $this */ @@ -8224,7 +8224,7 @@ public function getAllowOcrOfEnvelopeDocuments() /** * Sets allow_ocr_of_envelope_documents * - * @param ?string $allow_ocr_of_envelope_documents + * @param ?string $allow_ocr_of_envelope_documents * * @return $this */ @@ -8248,7 +8248,7 @@ public function getAllowOcrOfEnvelopeDocumentsMetadata() /** * Sets allow_ocr_of_envelope_documents_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_ocr_of_envelope_documents_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_ocr_of_envelope_documents_metadata * * @return $this */ @@ -8272,7 +8272,7 @@ public function getAllowOfflineSigning() /** * Sets allow_offline_signing * - * @param ?string $allow_offline_signing + * @param ?string $allow_offline_signing * * @return $this */ @@ -8320,7 +8320,7 @@ public function getAllowOnlyStandaloneWebForms() /** * Sets allow_only_standalone_web_forms * - * @param ?string $allow_only_standalone_web_forms + * @param ?string $allow_only_standalone_web_forms * * @return $this */ @@ -8344,7 +8344,7 @@ public function getAllowOnlyStandaloneWebFormsMetadata() /** * Sets allow_only_standalone_web_forms_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_only_standalone_web_forms_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_only_standalone_web_forms_metadata * * @return $this */ @@ -8368,7 +8368,7 @@ public function getAllowOpenTrustSignerCertificate() /** * Sets allow_open_trust_signer_certificate * - * @param ?string $allow_open_trust_signer_certificate + * @param ?string $allow_open_trust_signer_certificate * * @return $this */ @@ -8416,7 +8416,7 @@ public function getAllowOrganizationBranding() /** * Sets allow_organization_branding * - * @param ?string $allow_organization_branding + * @param ?string $allow_organization_branding * * @return $this */ @@ -8440,7 +8440,7 @@ public function getAllowOrganizationBrandingMetadata() /** * Sets allow_organization_branding_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_branding_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_branding_metadata * * @return $this */ @@ -8464,7 +8464,7 @@ public function getAllowOrganizationDocusignMonitor() /** * Sets allow_organization_docusign_monitor * - * @param ?string $allow_organization_docusign_monitor + * @param ?string $allow_organization_docusign_monitor * * @return $this */ @@ -8488,7 +8488,7 @@ public function getAllowOrganizationDocusignMonitorFree() /** * Sets allow_organization_docusign_monitor_free * - * @param ?string $allow_organization_docusign_monitor_free + * @param ?string $allow_organization_docusign_monitor_free * * @return $this */ @@ -8512,7 +8512,7 @@ public function getAllowOrganizationDocusignMonitorFreeMetadata() /** * Sets allow_organization_docusign_monitor_free_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_docusign_monitor_free_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_docusign_monitor_free_metadata * * @return $this */ @@ -8536,7 +8536,7 @@ public function getAllowOrganizationDocusignMonitorMetadata() /** * Sets allow_organization_docusign_monitor_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_docusign_monitor_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_docusign_monitor_metadata * * @return $this */ @@ -8560,7 +8560,7 @@ public function getAllowOrganizationDomainUserManagement() /** * Sets allow_organization_domain_user_management * - * @param ?string $allow_organization_domain_user_management + * @param ?string $allow_organization_domain_user_management * * @return $this */ @@ -8584,7 +8584,7 @@ public function getAllowOrganizationDomainUserManagementMetadata() /** * Sets allow_organization_domain_user_management_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_domain_user_management_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_domain_user_management_metadata * * @return $this */ @@ -8608,7 +8608,7 @@ public function getAllowOrganizations() /** * Sets allow_organizations * - * @param ?string $allow_organizations + * @param ?string $allow_organizations * * @return $this */ @@ -8656,7 +8656,7 @@ public function getAllowOrganizationSsoManagement() /** * Sets allow_organization_sso_management * - * @param ?string $allow_organization_sso_management + * @param ?string $allow_organization_sso_management * * @return $this */ @@ -8680,7 +8680,7 @@ public function getAllowOrganizationSsoManagementMetadata() /** * Sets allow_organization_sso_management_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_sso_management_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_sso_management_metadata * * @return $this */ @@ -8752,7 +8752,7 @@ public function getAllowOrganizationToUseRemoteNotary() /** * Sets allow_organization_to_use_remote_notary * - * @param ?string $allow_organization_to_use_remote_notary + * @param ?string $allow_organization_to_use_remote_notary * * @return $this */ @@ -8776,7 +8776,7 @@ public function getAllowOrganizationToUseRemoteNotaryMetadata() /** * Sets allow_organization_to_use_remote_notary_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_to_use_remote_notary_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_organization_to_use_remote_notary_metadata * * @return $this */ @@ -8848,7 +8848,7 @@ public function getAllowParticipantRecipientType() /** * Sets allow_participant_recipient_type * - * @param ?string $allow_participant_recipient_type + * @param ?string $allow_participant_recipient_type * * @return $this */ @@ -8872,7 +8872,7 @@ public function getAllowParticipantRecipientTypeMetadata() /** * Sets allow_participant_recipient_type_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_participant_recipient_type_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_participant_recipient_type_metadata * * @return $this */ @@ -8896,7 +8896,7 @@ public function getAllowPaymentProcessing() /** * Sets allow_payment_processing * - * @param ?string $allow_payment_processing + * @param ?string $allow_payment_processing * * @return $this */ @@ -8944,7 +8944,7 @@ public function getAllowPendingDestinationUrlEdition() /** * Sets allow_pending_destination_url_edition * - * @param ?string $allow_pending_destination_url_edition + * @param ?string $allow_pending_destination_url_edition * * @return $this */ @@ -8968,7 +8968,7 @@ public function getAllowPendingDestinationUrlEditionMetadata() /** * Sets allow_pending_destination_url_edition_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_pending_destination_url_edition_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_pending_destination_url_edition_metadata * * @return $this */ @@ -8992,7 +8992,7 @@ public function getAllowPerformanceAnalytics() /** * Sets allow_performance_analytics * - * @param ?string $allow_performance_analytics + * @param ?string $allow_performance_analytics * * @return $this */ @@ -9016,7 +9016,7 @@ public function getAllowPerformanceAnalyticsMetadata() /** * Sets allow_performance_analytics_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_performance_analytics_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_performance_analytics_metadata * * @return $this */ @@ -9040,7 +9040,7 @@ public function getAllowPhoneAuthentication() /** * Sets allow_phone_authentication * - * @param ?string $allow_phone_authentication + * @param ?string $allow_phone_authentication * * @return $this */ @@ -9088,7 +9088,7 @@ public function getAllowPhoneAuthOverride() /** * Sets allow_phone_auth_override * - * @param ?string $allow_phone_auth_override + * @param ?string $allow_phone_auth_override * * @return $this */ @@ -9136,7 +9136,7 @@ public function getAllowPrivateSigningGroups() /** * Sets allow_private_signing_groups * - * @param ?string $allow_private_signing_groups + * @param ?string $allow_private_signing_groups * * @return $this */ @@ -9184,7 +9184,7 @@ public function getAllowRecipientConnect() /** * Sets allow_recipient_connect * - * @param ?string $allow_recipient_connect + * @param ?string $allow_recipient_connect * * @return $this */ @@ -9208,7 +9208,7 @@ public function getAllowRecipientConnectMetadata() /** * Sets allow_recipient_connect_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_recipient_connect_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_recipient_connect_metadata * * @return $this */ @@ -9232,7 +9232,7 @@ public function getAllowReminders() /** * Sets allow_reminders * - * @param ?string $allow_reminders + * @param ?string $allow_reminders * * @return $this */ @@ -9280,7 +9280,7 @@ public function getAllowRemoteNotary() /** * Sets allow_remote_notary * - * @param ?string $allow_remote_notary + * @param ?string $allow_remote_notary * * @return $this */ @@ -9304,7 +9304,7 @@ public function getAllowRemoteNotaryMetadata() /** * Sets allow_remote_notary_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_remote_notary_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_remote_notary_metadata * * @return $this */ @@ -9328,7 +9328,7 @@ public function getAllowResourceFileBranding() /** * Sets allow_resource_file_branding * - * @param ?string $allow_resource_file_branding + * @param ?string $allow_resource_file_branding * * @return $this */ @@ -9376,7 +9376,7 @@ public function getAllowSafeBioPharmaSignerCertificate() /** * Sets allow_safe_bio_pharma_signer_certificate * - * @param ?string $allow_safe_bio_pharma_signer_certificate + * @param ?string $allow_safe_bio_pharma_signer_certificate * * @return $this */ @@ -9448,7 +9448,7 @@ public function getAllowScheduledSendingMetadata() /** * Sets allow_scheduled_sending_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_scheduled_sending_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_scheduled_sending_metadata * * @return $this */ @@ -9472,7 +9472,7 @@ public function getAllowSecurityAppliance() /** * Sets allow_security_appliance * - * @param ?string $allow_security_appliance + * @param ?string $allow_security_appliance * * @return $this */ @@ -9520,7 +9520,7 @@ public function getAllowSendingEnvelopesOnBehalfOfOthers() /** * Sets allow_sending_envelopes_on_behalf_of_others * - * @param ?string $allow_sending_envelopes_on_behalf_of_others + * @param ?string $allow_sending_envelopes_on_behalf_of_others * * @return $this */ @@ -9544,7 +9544,7 @@ public function getAllowSendingEnvelopesOnBehalfOfOthersMetadata() /** * Sets allow_sending_envelopes_on_behalf_of_others_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_sending_envelopes_on_behalf_of_others_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_sending_envelopes_on_behalf_of_others_metadata * * @return $this */ @@ -9568,7 +9568,7 @@ public function getAllowSendToCertifiedDelivery() /** * Sets allow_send_to_certified_delivery * - * @param ?string $allow_send_to_certified_delivery + * @param ?string $allow_send_to_certified_delivery * * @return $this */ @@ -9616,7 +9616,7 @@ public function getAllowSendToIntermediary() /** * Sets allow_send_to_intermediary * - * @param ?string $allow_send_to_intermediary + * @param ?string $allow_send_to_intermediary * * @return $this */ @@ -9664,7 +9664,7 @@ public function getAllowServerTemplates() /** * Sets allow_server_templates * - * @param ?string $allow_server_templates + * @param ?string $allow_server_templates * * @return $this */ @@ -9712,7 +9712,7 @@ public function getAllowSetEmbeddedRecipientStartUrl() /** * Sets allow_set_embedded_recipient_start_url * - * @param ?string $allow_set_embedded_recipient_start_url + * @param ?string $allow_set_embedded_recipient_start_url * * @return $this */ @@ -9736,7 +9736,7 @@ public function getAllowSetEmbeddedRecipientStartUrlMetadata() /** * Sets allow_set_embedded_recipient_start_url_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_set_embedded_recipient_start_url_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_set_embedded_recipient_start_url_metadata * * @return $this */ @@ -9760,7 +9760,7 @@ public function getAllowSharedTabs() /** * Sets allow_shared_tabs * - * @param ?string $allow_shared_tabs + * @param ?string $allow_shared_tabs * * @return $this */ @@ -9808,7 +9808,7 @@ public function getAllowSignatureStamps() /** * Sets allow_signature_stamps * - * @param ?string $allow_signature_stamps + * @param ?string $allow_signature_stamps * * @return $this */ @@ -9856,7 +9856,7 @@ public function getAllowSignDocumentFromHomePage() /** * Sets allow_sign_document_from_home_page * - * @param ?string $allow_sign_document_from_home_page + * @param ?string $allow_sign_document_from_home_page * * @return $this */ @@ -9904,7 +9904,7 @@ public function getAllowSignerReassign() /** * Sets allow_signer_reassign * - * @param ?string $allow_signer_reassign + * @param ?string $allow_signer_reassign * * @return $this */ @@ -9952,7 +9952,7 @@ public function getAllowSignerReassignOverride() /** * Sets allow_signer_reassign_override * - * @param ?string $allow_signer_reassign_override + * @param ?string $allow_signer_reassign_override * * @return $this */ @@ -10000,7 +10000,7 @@ public function getAllowSigningExtensions() /** * Sets allow_signing_extensions * - * @param ?string $allow_signing_extensions + * @param ?string $allow_signing_extensions * * @return $this */ @@ -10048,7 +10048,7 @@ public function getAllowSigningGroups() /** * Sets allow_signing_groups * - * @param ?string $allow_signing_groups + * @param ?string $allow_signing_groups * * @return $this */ @@ -10096,7 +10096,7 @@ public function getAllowSigningInsights() /** * Sets allow_signing_insights * - * @param ?string $allow_signing_insights + * @param ?string $allow_signing_insights * * @return $this */ @@ -10120,7 +10120,7 @@ public function getAllowSigningInsightsMetadata() /** * Sets allow_signing_insights_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_signing_insights_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_signing_insights_metadata * * @return $this */ @@ -10144,7 +10144,7 @@ public function getAllowSigningRadioDeselect() /** * Sets allow_signing_radio_deselect * - * @param ?string $allow_signing_radio_deselect + * @param ?string $allow_signing_radio_deselect * * @return $this */ @@ -10192,7 +10192,7 @@ public function getAllowSignNow() /** * Sets allow_sign_now * - * @param ?string $allow_sign_now + * @param ?string $allow_sign_now * * @return $this */ @@ -10216,7 +10216,7 @@ public function getAllowSignNowMetadata() /** * Sets allow_sign_now_metadata * - * @param ?string $allow_sign_now_metadata + * @param ?string $allow_sign_now_metadata * * @return $this */ @@ -10240,7 +10240,7 @@ public function getAllowSmsDelivery() /** * Sets allow_sms_delivery * - * @param ?string $allow_sms_delivery + * @param ?string $allow_sms_delivery * * @return $this */ @@ -10264,7 +10264,7 @@ public function getAllowSmsDeliveryMetadata() /** * Sets allow_sms_delivery_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_sms_delivery_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_sms_delivery_metadata * * @return $this */ @@ -10288,7 +10288,7 @@ public function getAllowSocialIdLogin() /** * Sets allow_social_id_login * - * @param ?string $allow_social_id_login + * @param ?string $allow_social_id_login * * @return $this */ @@ -10336,7 +10336,7 @@ public function getAllowSupplementalDocuments() /** * Sets allow_supplemental_documents * - * @param ?string $allow_supplemental_documents + * @param ?string $allow_supplemental_documents * * @return $this */ @@ -10408,7 +10408,7 @@ public function getAllowThirdPartyElectronicNotaryMetadata() /** * Sets allow_third_party_electronic_notary_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_third_party_electronic_notary_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_third_party_electronic_notary_metadata * * @return $this */ @@ -10432,7 +10432,7 @@ public function getAllowTransactionsWorkspace() /** * Sets allow_transactions_workspace * - * @param ?string $allow_transactions_workspace + * @param ?string $allow_transactions_workspace * * @return $this */ @@ -10456,7 +10456,7 @@ public function getAllowTransactionsWorkspaceMetadata() /** * Sets allow_transactions_workspace_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_workspace_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_workspace_metadata * * @return $this */ @@ -10480,7 +10480,7 @@ public function getAllowTransactionsWorkspaceOriginal() /** * Sets allow_transactions_workspace_original * - * @param ?string $allow_transactions_workspace_original + * @param ?string $allow_transactions_workspace_original * * @return $this */ @@ -10504,7 +10504,7 @@ public function getAllowTransactionsWorkspaceOriginalMetadata() /** * Sets allow_transactions_workspace_original_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_workspace_original_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_transactions_workspace_original_metadata * * @return $this */ @@ -10528,7 +10528,7 @@ public function getAllowUsersToAccessDirectory() /** * Sets allow_users_to_access_directory * - * @param ?string $allow_users_to_access_directory + * @param ?string $allow_users_to_access_directory * * @return $this */ @@ -10552,7 +10552,7 @@ public function getAllowUsersToAccessDirectoryMetadata() /** * Sets allow_users_to_access_directory_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_users_to_access_directory_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_users_to_access_directory_metadata * * @return $this */ @@ -10576,7 +10576,7 @@ public function getAllowValueInsights() /** * Sets allow_value_insights * - * @param ?string $allow_value_insights + * @param ?string $allow_value_insights * * @return $this */ @@ -10600,7 +10600,7 @@ public function getAllowValueInsightsMetadata() /** * Sets allow_value_insights_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_value_insights_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_value_insights_metadata * * @return $this */ @@ -10624,7 +10624,7 @@ public function getAllowWebForms() /** * Sets allow_web_forms * - * @param ?string $allow_web_forms + * @param ?string $allow_web_forms * * @return $this */ @@ -10648,7 +10648,7 @@ public function getAllowWebFormsMetadata() /** * Sets allow_web_forms_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_web_forms_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_web_forms_metadata * * @return $this */ @@ -10672,7 +10672,7 @@ public function getAllowWhatsAppDelivery() /** * Sets allow_whats_app_delivery * - * @param ?string $allow_whats_app_delivery + * @param ?string $allow_whats_app_delivery * * @return $this */ @@ -10696,7 +10696,7 @@ public function getAllowWhatsAppDeliveryMetadata() /** * Sets allow_whats_app_delivery_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $allow_whats_app_delivery_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $allow_whats_app_delivery_metadata * * @return $this */ @@ -10720,7 +10720,7 @@ public function getAnchorPopulationScope() /** * Sets anchor_population_scope * - * @param ?string $anchor_population_scope + * @param ?string $anchor_population_scope * * @return $this */ @@ -10768,7 +10768,7 @@ public function getAnchorTagVersionedPlacementEnabled() /** * Sets anchor_tag_versioned_placement_enabled * - * @param ?string $anchor_tag_versioned_placement_enabled + * @param ?string $anchor_tag_versioned_placement_enabled * * @return $this */ @@ -10792,7 +10792,7 @@ public function getAnchorTagVersionedPlacementMetadataEnabled() /** * Sets anchor_tag_versioned_placement_metadata_enabled * - * @param \DocuSign\eSign\Model\SettingsMetadata $anchor_tag_versioned_placement_metadata_enabled + * @param \DocuSign\eSign\Model\SettingsMetadata $anchor_tag_versioned_placement_metadata_enabled * * @return $this */ @@ -10816,7 +10816,7 @@ public function getAttachCompletedEnvelope() /** * Sets attach_completed_envelope * - * @param ?string $attach_completed_envelope + * @param ?string $attach_completed_envelope * * @return $this */ @@ -10864,7 +10864,7 @@ public function getAuthenticationCheck() /** * Sets authentication_check * - * @param ?string $authentication_check + * @param ?string $authentication_check * * @return $this */ @@ -10912,7 +10912,7 @@ public function getAutoNavRule() /** * Sets auto_nav_rule * - * @param ?string $auto_nav_rule + * @param ?string $auto_nav_rule * * @return $this */ @@ -10960,7 +10960,7 @@ public function getAutoProvisionSignerAccount() /** * Sets auto_provision_signer_account * - * @param ?string $auto_provision_signer_account + * @param ?string $auto_provision_signer_account * * @return $this */ @@ -11008,7 +11008,7 @@ public function getBccEmailArchive() /** * Sets bcc_email_archive * - * @param ?string $bcc_email_archive + * @param ?string $bcc_email_archive * * @return $this */ @@ -11056,7 +11056,7 @@ public function getBetaSwitchConfiguration() /** * Sets beta_switch_configuration * - * @param ?string $beta_switch_configuration + * @param ?string $beta_switch_configuration * * @return $this */ @@ -11152,7 +11152,7 @@ public function getBulkSend() /** * Sets bulk_send * - * @param ?string $bulk_send + * @param ?string $bulk_send * * @return $this */ @@ -11176,7 +11176,7 @@ public function getBulkSendActionResendLimit() /** * Sets bulk_send_action_resend_limit * - * @param ?string $bulk_send_action_resend_limit + * @param ?string $bulk_send_action_resend_limit * * @return $this */ @@ -11200,7 +11200,7 @@ public function getBulkSendMaxCopiesInBatch() /** * Sets bulk_send_max_copies_in_batch * - * @param ?string $bulk_send_max_copies_in_batch + * @param ?string $bulk_send_max_copies_in_batch * * @return $this */ @@ -11224,7 +11224,7 @@ public function getBulkSendMaxUnprocessedEnvelopesCount() /** * Sets bulk_send_max_unprocessed_envelopes_count * - * @param ?string $bulk_send_max_unprocessed_envelopes_count + * @param ?string $bulk_send_max_unprocessed_envelopes_count * * @return $this */ @@ -11272,7 +11272,7 @@ public function getCanSelfBrandSend() /** * Sets can_self_brand_send * - * @param ?string $can_self_brand_send + * @param ?string $can_self_brand_send * * @return $this */ @@ -11320,7 +11320,7 @@ public function getCanSelfBrandSign() /** * Sets can_self_brand_sign * - * @param ?string $can_self_brand_sign + * @param ?string $can_self_brand_sign * * @return $this */ @@ -11368,7 +11368,7 @@ public function getCanUseSalesforceOAuth() /** * Sets can_use_salesforce_o_auth * - * @param ?string $can_use_salesforce_o_auth + * @param ?string $can_use_salesforce_o_auth * * @return $this */ @@ -11392,7 +11392,7 @@ public function getCanUseSalesforceOAuthMetadata() /** * Sets can_use_salesforce_o_auth_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_use_salesforce_o_auth_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_use_salesforce_o_auth_metadata * * @return $this */ @@ -11416,7 +11416,7 @@ public function getCaptureVoiceRecording() /** * Sets capture_voice_recording * - * @param ?string $capture_voice_recording + * @param ?string $capture_voice_recording * * @return $this */ @@ -11464,7 +11464,7 @@ public function getCfr21SimplifiedSigningEnabled() /** * Sets cfr21_simplified_signing_enabled * - * @param ?string $cfr21_simplified_signing_enabled + * @param ?string $cfr21_simplified_signing_enabled * * @return $this */ @@ -11488,7 +11488,7 @@ public function getCfr21SimplifiedSigningEnabledMetadata() /** * Sets cfr21_simplified_signing_enabled_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $cfr21_simplified_signing_enabled_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $cfr21_simplified_signing_enabled_metadata * * @return $this */ @@ -11512,7 +11512,7 @@ public function getCfrUseWideImage() /** * Sets cfr_use_wide_image * - * @param ?string $cfr_use_wide_image + * @param ?string $cfr_use_wide_image * * @return $this */ @@ -11560,7 +11560,7 @@ public function getCheckForMultipleAdminsOnAccount() /** * Sets check_for_multiple_admins_on_account * - * @param ?string $check_for_multiple_admins_on_account + * @param ?string $check_for_multiple_admins_on_account * * @return $this */ @@ -11608,7 +11608,7 @@ public function getChromeSignatureEnabled() /** * Sets chrome_signature_enabled * - * @param ?string $chrome_signature_enabled + * @param ?string $chrome_signature_enabled * * @return $this */ @@ -11656,7 +11656,7 @@ public function getCloudReady() /** * Sets cloud_ready * - * @param ?string $cloud_ready + * @param ?string $cloud_ready * * @return $this */ @@ -11680,7 +11680,7 @@ public function getCommentEmailShowMessageText() /** * Sets comment_email_show_message_text * - * @param ?string $comment_email_show_message_text + * @param ?string $comment_email_show_message_text * * @return $this */ @@ -11728,7 +11728,7 @@ public function getCommentsAllowEnvelopeOverride() /** * Sets comments_allow_envelope_override * - * @param ?string $comments_allow_envelope_override + * @param ?string $comments_allow_envelope_override * * @return $this */ @@ -11776,7 +11776,7 @@ public function getConditionalFieldsEnabled() /** * Sets conditional_fields_enabled * - * @param ?string $conditional_fields_enabled + * @param ?string $conditional_fields_enabled * * @return $this */ @@ -11824,7 +11824,7 @@ public function getConsumerDisclosureFrequency() /** * Sets consumer_disclosure_frequency * - * @param ?string $consumer_disclosure_frequency + * @param ?string $consumer_disclosure_frequency * * @return $this */ @@ -11872,7 +11872,7 @@ public function getConvertPdfFields() /** * Sets convert_pdf_fields * - * @param ?string $convert_pdf_fields + * @param ?string $convert_pdf_fields * * @return $this */ @@ -11920,7 +11920,7 @@ public function getCustomExtractionPlanLevels() /** * Sets custom_extraction_plan_levels * - * @param ?string $custom_extraction_plan_levels + * @param ?string $custom_extraction_plan_levels * * @return $this */ @@ -11944,7 +11944,7 @@ public function getCustomExtractionPlanLevelsMetadata() /** * Sets custom_extraction_plan_levels_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $custom_extraction_plan_levels_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $custom_extraction_plan_levels_metadata * * @return $this */ @@ -11968,7 +11968,7 @@ public function getDataPopulationScope() /** * Sets data_population_scope * - * @param ?string $data_population_scope + * @param ?string $data_population_scope * * @return $this */ @@ -12016,7 +12016,7 @@ public function getDefaultSigningResponsiveView() /** * Sets default_signing_responsive_view * - * @param ?string $default_signing_responsive_view + * @param ?string $default_signing_responsive_view * * @return $this */ @@ -12040,7 +12040,7 @@ public function getDefaultSigningResponsiveViewMetadata() /** * Sets default_signing_responsive_view_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $default_signing_responsive_view_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $default_signing_responsive_view_metadata * * @return $this */ @@ -12064,7 +12064,7 @@ public function getDefaultSigningResponsiveViewUseGrade() /** * Sets default_signing_responsive_view_use_grade * - * @param ?string $default_signing_responsive_view_use_grade + * @param ?string $default_signing_responsive_view_use_grade * * @return $this */ @@ -12088,7 +12088,7 @@ public function getDefaultSigningResponsiveViewUseGradeMetadata() /** * Sets default_signing_responsive_view_use_grade_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $default_signing_responsive_view_use_grade_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $default_signing_responsive_view_use_grade_metadata * * @return $this */ @@ -12112,7 +12112,7 @@ public function getDefaultToAdvancedEnvelopesFilterForm() /** * Sets default_to_advanced_envelopes_filter_form * - * @param ?string $default_to_advanced_envelopes_filter_form + * @param ?string $default_to_advanced_envelopes_filter_form * * @return $this */ @@ -12136,7 +12136,7 @@ public function getDefaultToAdvancedEnvelopesFilterFormMetadata() /** * Sets default_to_advanced_envelopes_filter_form_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $default_to_advanced_envelopes_filter_form_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $default_to_advanced_envelopes_filter_form_metadata * * @return $this */ @@ -12160,7 +12160,7 @@ public function getDisableAutoTemplateMatching() /** * Sets disable_auto_template_matching * - * @param ?string $disable_auto_template_matching + * @param ?string $disable_auto_template_matching * * @return $this */ @@ -12184,7 +12184,7 @@ public function getDisableAutoTemplateMatchingMetadata() /** * Sets disable_auto_template_matching_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $disable_auto_template_matching_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $disable_auto_template_matching_metadata * * @return $this */ @@ -12208,7 +12208,7 @@ public function getDisableLegacySharedEnvelopes() /** * Sets disable_legacy_shared_envelopes * - * @param ?string $disable_legacy_shared_envelopes + * @param ?string $disable_legacy_shared_envelopes * * @return $this */ @@ -12232,7 +12232,7 @@ public function getDisableLegacySharedEnvelopesMetadata() /** * Sets disable_legacy_shared_envelopes_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $disable_legacy_shared_envelopes_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $disable_legacy_shared_envelopes_metadata * * @return $this */ @@ -12256,7 +12256,7 @@ public function getDisableMobileApp() /** * Sets disable_mobile_app * - * @param ?string $disable_mobile_app + * @param ?string $disable_mobile_app * * @return $this */ @@ -12304,7 +12304,7 @@ public function getDisableMobilePushNotifications() /** * Sets disable_mobile_push_notifications * - * @param ?string $disable_mobile_push_notifications + * @param ?string $disable_mobile_push_notifications * * @return $this */ @@ -12352,7 +12352,7 @@ public function getDisableMobileSending() /** * Sets disable_mobile_sending * - * @param ?string $disable_mobile_sending + * @param ?string $disable_mobile_sending * * @return $this */ @@ -12400,7 +12400,7 @@ public function getDisableMultipleSessions() /** * Sets disable_multiple_sessions * - * @param ?string $disable_multiple_sessions + * @param ?string $disable_multiple_sessions * * @return $this */ @@ -12472,7 +12472,7 @@ public function getDisableSignerCertView() /** * Sets disable_signer_cert_view * - * @param ?string $disable_signer_cert_view + * @param ?string $disable_signer_cert_view * * @return $this */ @@ -12520,7 +12520,7 @@ public function getDisableSignerHistoryView() /** * Sets disable_signer_history_view * - * @param ?string $disable_signer_history_view + * @param ?string $disable_signer_history_view * * @return $this */ @@ -12568,7 +12568,7 @@ public function getDisableStyleSignature() /** * Sets disable_style_signature * - * @param ?string $disable_style_signature + * @param ?string $disable_style_signature * * @return $this */ @@ -12616,7 +12616,7 @@ public function getDisableUploadSignature() /** * Sets disable_upload_signature * - * @param ?string $disable_upload_signature + * @param ?string $disable_upload_signature * * @return $this */ @@ -12664,7 +12664,7 @@ public function getDisableUserSharing() /** * Sets disable_user_sharing * - * @param ?string $disable_user_sharing + * @param ?string $disable_user_sharing * * @return $this */ @@ -12712,7 +12712,7 @@ public function getDisplayBetaSwitch() /** * Sets display_beta_switch * - * @param ?string $display_beta_switch + * @param ?string $display_beta_switch * * @return $this */ @@ -12760,7 +12760,7 @@ public function getDocumentConversionRestrictions() /** * Sets document_conversion_restrictions * - * @param ?string $document_conversion_restrictions + * @param ?string $document_conversion_restrictions * * @return $this */ @@ -12808,7 +12808,7 @@ public function getDocumentRetention() /** * Sets document_retention * - * @param ?string $document_retention + * @param ?string $document_retention * * @return $this */ @@ -12856,7 +12856,7 @@ public function getDocumentRetentionPurgeTabs() /** * Sets document_retention_purge_tabs * - * @param ?string $document_retention_purge_tabs + * @param ?string $document_retention_purge_tabs * * @return $this */ @@ -12880,7 +12880,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param ?string $document_visibility + * @param ?string $document_visibility * * @return $this */ @@ -12928,7 +12928,7 @@ public function getDraftEnvelopeRetention() /** * Sets draft_envelope_retention * - * @param ?string $draft_envelope_retention + * @param ?string $draft_envelope_retention * * @return $this */ @@ -12952,7 +12952,7 @@ public function getDraftEnvelopeRetentionMetadata() /** * Sets draft_envelope_retention_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $draft_envelope_retention_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $draft_envelope_retention_metadata * * @return $this */ @@ -12976,7 +12976,7 @@ public function getDssScorefdn196RebrandDocuSignIsNotAVerb() /** * Sets dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb * - * @param ?string $dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb + * @param ?string $dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb * * @return $this */ @@ -13000,7 +13000,7 @@ public function getDssSign28411EnableLeavePagePromptRadminOption() /** * Sets dss_sign_28411_enable_leave_page_prompt_radmin_option * - * @param ?string $dss_sign_28411_enable_leave_page_prompt_radmin_option + * @param ?string $dss_sign_28411_enable_leave_page_prompt_radmin_option * * @return $this */ @@ -13024,7 +13024,7 @@ public function getDssSign29182SlideUpBarRadminOption() /** * Sets dss_sign_29182_slide_up_bar_radmin_option * - * @param ?string $dss_sign_29182_slide_up_bar_radmin_option + * @param ?string $dss_sign_29182_slide_up_bar_radmin_option * * @return $this */ @@ -13048,7 +13048,7 @@ public function getEmailTemplateVersion() /** * Sets email_template_version * - * @param ?string $email_template_version + * @param ?string $email_template_version * * @return $this */ @@ -13096,7 +13096,7 @@ public function getEnableAccessCodeGenerator() /** * Sets enable_access_code_generator * - * @param ?string $enable_access_code_generator + * @param ?string $enable_access_code_generator * * @return $this */ @@ -13144,7 +13144,7 @@ public function getEnableAccountWideSearch() /** * Sets enable_account_wide_search * - * @param ?string $enable_account_wide_search + * @param ?string $enable_account_wide_search * * @return $this */ @@ -13168,7 +13168,7 @@ public function getEnableAccountWideSearchMetadata() /** * Sets enable_account_wide_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_account_wide_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_account_wide_search_metadata * * @return $this */ @@ -13192,7 +13192,7 @@ public function getEnableAdditionalAdvancedWebFormsFeatures() /** * Sets enable_additional_advanced_web_forms_features * - * @param ?string $enable_additional_advanced_web_forms_features + * @param ?string $enable_additional_advanced_web_forms_features * * @return $this */ @@ -13216,7 +13216,7 @@ public function getEnableAdditionalAdvancedWebFormsFeaturesMetadata() /** * Sets enable_additional_advanced_web_forms_features_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_additional_advanced_web_forms_features_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_additional_advanced_web_forms_features_metadata * * @return $this */ @@ -13288,7 +13288,7 @@ public function getEnableAdvancedEnvelopesSearch() /** * Sets enable_advanced_envelopes_search * - * @param ?string $enable_advanced_envelopes_search + * @param ?string $enable_advanced_envelopes_search * * @return $this */ @@ -13312,7 +13312,7 @@ public function getEnableAdvancedEnvelopesSearchMetadata() /** * Sets enable_advanced_envelopes_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_advanced_envelopes_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_advanced_envelopes_search_metadata * * @return $this */ @@ -13336,7 +13336,7 @@ public function getEnableAdvancedPayments() /** * Sets enable_advanced_payments * - * @param ?string $enable_advanced_payments + * @param ?string $enable_advanced_payments * * @return $this */ @@ -13384,7 +13384,7 @@ public function getEnableAdvancedPowerForms() /** * Sets enable_advanced_power_forms * - * @param ?string $enable_advanced_power_forms + * @param ?string $enable_advanced_power_forms * * @return $this */ @@ -13432,7 +13432,7 @@ public function getEnableAdvancedSearch() /** * Sets enable_advanced_search * - * @param ?string $enable_advanced_search + * @param ?string $enable_advanced_search * * @return $this */ @@ -13456,7 +13456,7 @@ public function getEnableAdvancedSearchMetadata() /** * Sets enable_advanced_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_advanced_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_advanced_search_metadata * * @return $this */ @@ -13480,7 +13480,7 @@ public function getEnableAgreementActionsForClm() /** * Sets enable_agreement_actions_for_clm * - * @param ?string $enable_agreement_actions_for_clm + * @param ?string $enable_agreement_actions_for_clm * * @return $this */ @@ -13504,7 +13504,7 @@ public function getEnableAgreementActionsForClmMetadata() /** * Sets enable_agreement_actions_for_clm_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_actions_for_clm_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_actions_for_clm_metadata * * @return $this */ @@ -13528,7 +13528,7 @@ public function getEnableAgreementActionsForESign() /** * Sets enable_agreement_actions_for_e_sign * - * @param ?string $enable_agreement_actions_for_e_sign + * @param ?string $enable_agreement_actions_for_e_sign * * @return $this */ @@ -13552,7 +13552,7 @@ public function getEnableAgreementActionsForESignMetadata() /** * Sets enable_agreement_actions_for_e_sign_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_actions_for_e_sign_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_actions_for_e_sign_metadata * * @return $this */ @@ -13576,7 +13576,7 @@ public function getEnableAgreementDeskAdvanced() /** * Sets enable_agreement_desk_advanced * - * @param ?string $enable_agreement_desk_advanced + * @param ?string $enable_agreement_desk_advanced * * @return $this */ @@ -13600,7 +13600,7 @@ public function getEnableAgreementDeskAdvancedMetaData() /** * Sets enable_agreement_desk_advanced_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_desk_advanced_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_agreement_desk_advanced_meta_data * * @return $this */ @@ -13624,7 +13624,7 @@ public function getEnableAiContractReview() /** * Sets enable_ai_contract_review * - * @param ?string $enable_ai_contract_review + * @param ?string $enable_ai_contract_review * * @return $this */ @@ -13648,7 +13648,7 @@ public function getEnableAiContractReviewMetadata() /** * Sets enable_ai_contract_review_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_contract_review_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_contract_review_metadata * * @return $this */ @@ -13672,7 +13672,7 @@ public function getEnableAiSenderMessage() /** * Sets enable_ai_sender_message * - * @param ?string $enable_ai_sender_message + * @param ?string $enable_ai_sender_message * * @return $this */ @@ -13696,7 +13696,7 @@ public function getEnableAiSenderMessageMetadata() /** * Sets enable_ai_sender_message_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_sender_message_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_sender_message_metadata * * @return $this */ @@ -13720,7 +13720,7 @@ public function getEnableAiSuggestedFieldsAdvanced() /** * Sets enable_ai_suggested_fields_advanced * - * @param ?string $enable_ai_suggested_fields_advanced + * @param ?string $enable_ai_suggested_fields_advanced * * @return $this */ @@ -13744,7 +13744,7 @@ public function getEnableAiSuggestedFieldsAdvancedMetadata() /** * Sets enable_ai_suggested_fields_advanced_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_suggested_fields_advanced_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_suggested_fields_advanced_metadata * * @return $this */ @@ -13768,7 +13768,7 @@ public function getEnableAiSuggestedFieldsBasic() /** * Sets enable_ai_suggested_fields_basic * - * @param ?string $enable_ai_suggested_fields_basic + * @param ?string $enable_ai_suggested_fields_basic * * @return $this */ @@ -13792,7 +13792,7 @@ public function getEnableAiSuggestedFieldsBasicMetadata() /** * Sets enable_ai_suggested_fields_basic_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_suggested_fields_basic_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_ai_suggested_fields_basic_metadata * * @return $this */ @@ -13816,7 +13816,7 @@ public function getEnableAutoNav() /** * Sets enable_auto_nav * - * @param ?string $enable_auto_nav + * @param ?string $enable_auto_nav * * @return $this */ @@ -13864,7 +13864,7 @@ public function getEnableBatchUpdateEnvelopeTypes() /** * Sets enable_batch_update_envelope_types * - * @param ?string $enable_batch_update_envelope_types + * @param ?string $enable_batch_update_envelope_types * * @return $this */ @@ -13888,7 +13888,7 @@ public function getEnableBatchUpdateEnvelopeTypesMetadata() /** * Sets enable_batch_update_envelope_types_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_batch_update_envelope_types_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_batch_update_envelope_types_metadata * * @return $this */ @@ -13912,7 +13912,7 @@ public function getEnableBccDummyLink() /** * Sets enable_bcc_dummy_link * - * @param ?string $enable_bcc_dummy_link + * @param ?string $enable_bcc_dummy_link * * @return $this */ @@ -13936,7 +13936,7 @@ public function getEnableBccDummyLinkMetadata() /** * Sets enable_bcc_dummy_link_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_bcc_dummy_link_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_bcc_dummy_link_metadata * * @return $this */ @@ -13960,7 +13960,7 @@ public function getEnableCalculatedFields() /** * Sets enable_calculated_fields * - * @param ?string $enable_calculated_fields + * @param ?string $enable_calculated_fields * * @return $this */ @@ -14008,7 +14008,7 @@ public function getEnableClickPlus() /** * Sets enable_click_plus * - * @param ?string $enable_click_plus + * @param ?string $enable_click_plus * * @return $this */ @@ -14032,7 +14032,7 @@ public function getEnableClickPlusConditionalContent() /** * Sets enable_click_plus_conditional_content * - * @param ?string $enable_click_plus_conditional_content + * @param ?string $enable_click_plus_conditional_content * * @return $this */ @@ -14056,7 +14056,7 @@ public function getEnableClickPlusConditionalContentMetaData() /** * Sets enable_click_plus_conditional_content_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_conditional_content_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_conditional_content_meta_data * * @return $this */ @@ -14080,7 +14080,7 @@ public function getEnableClickPlusCustomFields() /** * Sets enable_click_plus_custom_fields * - * @param ?string $enable_click_plus_custom_fields + * @param ?string $enable_click_plus_custom_fields * * @return $this */ @@ -14104,7 +14104,7 @@ public function getEnableClickPlusCustomFieldsMetaData() /** * Sets enable_click_plus_custom_fields_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_custom_fields_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_custom_fields_meta_data * * @return $this */ @@ -14128,7 +14128,7 @@ public function getEnableClickPlusCustomStyle() /** * Sets enable_click_plus_custom_style * - * @param ?string $enable_click_plus_custom_style + * @param ?string $enable_click_plus_custom_style * * @return $this */ @@ -14152,7 +14152,7 @@ public function getEnableClickPlusCustomStyleMetaData() /** * Sets enable_click_plus_custom_style_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_custom_style_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_custom_style_meta_data * * @return $this */ @@ -14176,7 +14176,7 @@ public function getEnableClickPlusDynamicContent() /** * Sets enable_click_plus_dynamic_content * - * @param ?string $enable_click_plus_dynamic_content + * @param ?string $enable_click_plus_dynamic_content * * @return $this */ @@ -14200,7 +14200,7 @@ public function getEnableClickPlusDynamicContentMetaData() /** * Sets enable_click_plus_dynamic_content_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_dynamic_content_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_dynamic_content_meta_data * * @return $this */ @@ -14224,7 +14224,7 @@ public function getEnableClickPlusMetaData() /** * Sets enable_click_plus_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_click_plus_meta_data * * @return $this */ @@ -14248,7 +14248,7 @@ public function getEnableClickwraps() /** * Sets enable_clickwraps * - * @param ?string $enable_clickwraps + * @param ?string $enable_clickwraps * * @return $this */ @@ -14296,7 +14296,7 @@ public function getEnableCombinedPdfDownloadForSbs() /** * Sets enable_combined_pdf_download_for_sbs * - * @param ?string $enable_combined_pdf_download_for_sbs + * @param ?string $enable_combined_pdf_download_for_sbs * * @return $this */ @@ -14320,7 +14320,7 @@ public function getEnableCommentsHistoryDownloadInSigning() /** * Sets enable_comments_history_download_in_signing * - * @param ?string $enable_comments_history_download_in_signing + * @param ?string $enable_comments_history_download_in_signing * * @return $this */ @@ -14344,7 +14344,7 @@ public function getEnableCommentsHistoryDownloadInSigningMetadata() /** * Sets enable_comments_history_download_in_signing_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_comments_history_download_in_signing_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_comments_history_download_in_signing_metadata * * @return $this */ @@ -14368,7 +14368,7 @@ public function getEnableContactSuggestions() /** * Sets enable_contact_suggestions * - * @param ?string $enable_contact_suggestions + * @param ?string $enable_contact_suggestions * * @return $this */ @@ -14392,7 +14392,7 @@ public function getEnableContactSuggestionsMetadata() /** * Sets enable_contact_suggestions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_contact_suggestions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_contact_suggestions_metadata * * @return $this */ @@ -14416,7 +14416,7 @@ public function getEnableContentSearch() /** * Sets enable_content_search * - * @param ?string $enable_content_search + * @param ?string $enable_content_search * * @return $this */ @@ -14440,7 +14440,7 @@ public function getEnableContentSearchMetadata() /** * Sets enable_content_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_content_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_content_search_metadata * * @return $this */ @@ -14464,7 +14464,7 @@ public function getEnableCoupaCoreExtension() /** * Sets enable_coupa_core_extension * - * @param ?string $enable_coupa_core_extension + * @param ?string $enable_coupa_core_extension * * @return $this */ @@ -14488,7 +14488,7 @@ public function getEnableCoupaCoreExtensionMetadata() /** * Sets enable_coupa_core_extension_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_coupa_core_extension_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_coupa_core_extension_metadata * * @return $this */ @@ -14512,7 +14512,7 @@ public function getEnableCustomDataVerificationExtensions() /** * Sets enable_custom_data_verification_extensions * - * @param ?string $enable_custom_data_verification_extensions + * @param ?string $enable_custom_data_verification_extensions * * @return $this */ @@ -14536,7 +14536,7 @@ public function getEnableCustomDataVerificationExtensionsMetadata() /** * Sets enable_custom_data_verification_extensions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_custom_data_verification_extensions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_custom_data_verification_extensions_metadata * * @return $this */ @@ -14560,7 +14560,7 @@ public function getEnableCustomerSatisfactionMetricTracking() /** * Sets enable_customer_satisfaction_metric_tracking * - * @param ?string $enable_customer_satisfaction_metric_tracking + * @param ?string $enable_customer_satisfaction_metric_tracking * * @return $this */ @@ -14608,7 +14608,7 @@ public function getEnableDataVerificationExtensions() /** * Sets enable_data_verification_extensions * - * @param ?string $enable_data_verification_extensions + * @param ?string $enable_data_verification_extensions * * @return $this */ @@ -14632,7 +14632,7 @@ public function getEnableDataVerificationExtensionsMetadata() /** * Sets enable_data_verification_extensions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_data_verification_extensions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_data_verification_extensions_metadata * * @return $this */ @@ -14656,7 +14656,7 @@ public function getEnableDocumentTemplateLibrary() /** * Sets enable_document_template_library * - * @param ?string $enable_document_template_library + * @param ?string $enable_document_template_library * * @return $this */ @@ -14680,7 +14680,7 @@ public function getEnableDocumentTemplateLibraryMetadata() /** * Sets enable_document_template_library_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_document_template_library_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_document_template_library_metadata * * @return $this */ @@ -14704,7 +14704,7 @@ public function getEnableDSigEuAdvancedPens() /** * Sets enable_d_sig_eu_advanced_pens * - * @param ?string $enable_d_sig_eu_advanced_pens + * @param ?string $enable_d_sig_eu_advanced_pens * * @return $this */ @@ -14728,7 +14728,7 @@ public function getEnableDSigEuAdvancedPensMetadata() /** * Sets enable_d_sig_eu_advanced_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_eu_advanced_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_eu_advanced_pens_metadata * * @return $this */ @@ -14752,7 +14752,7 @@ public function getEnableDSigExpressPens() /** * Sets enable_d_sig_express_pens * - * @param ?string $enable_d_sig_express_pens + * @param ?string $enable_d_sig_express_pens * * @return $this */ @@ -14776,7 +14776,7 @@ public function getEnableDSigExpressPensMetadata() /** * Sets enable_d_sig_express_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_express_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_express_pens_metadata * * @return $this */ @@ -14800,7 +14800,7 @@ public function getEnableDSigIdCheckForAesPens() /** * Sets enable_d_sig_id_check_for_aes_pens * - * @param ?string $enable_d_sig_id_check_for_aes_pens + * @param ?string $enable_d_sig_id_check_for_aes_pens * * @return $this */ @@ -14824,7 +14824,7 @@ public function getEnableDSigIdCheckForAesPensMetadata() /** * Sets enable_d_sig_id_check_for_aes_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_for_aes_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_for_aes_pens_metadata * * @return $this */ @@ -14848,7 +14848,7 @@ public function getEnableDSigIdCheckInPersonForQesPens() /** * Sets enable_d_sig_id_check_in_person_for_qes_pens * - * @param ?string $enable_d_sig_id_check_in_person_for_qes_pens + * @param ?string $enable_d_sig_id_check_in_person_for_qes_pens * * @return $this */ @@ -14872,7 +14872,7 @@ public function getEnableDSigIdCheckInPersonForQesPensMetadata() /** * Sets enable_d_sig_id_check_in_person_for_qes_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_in_person_for_qes_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_in_person_for_qes_pens_metadata * * @return $this */ @@ -14896,7 +14896,7 @@ public function getEnableDSigIdCheckRemoteForQesPens() /** * Sets enable_d_sig_id_check_remote_for_qes_pens * - * @param ?string $enable_d_sig_id_check_remote_for_qes_pens + * @param ?string $enable_d_sig_id_check_remote_for_qes_pens * * @return $this */ @@ -14920,7 +14920,7 @@ public function getEnableDSigIdCheckRemoteForQesPensMetadata() /** * Sets enable_d_sig_id_check_remote_for_qes_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_remote_for_qes_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_check_remote_for_qes_pens_metadata * * @return $this */ @@ -14944,7 +14944,7 @@ public function getEnableDSigIdVerificationPens() /** * Sets enable_d_sig_id_verification_pens * - * @param ?string $enable_d_sig_id_verification_pens + * @param ?string $enable_d_sig_id_verification_pens * * @return $this */ @@ -14968,7 +14968,7 @@ public function getEnableDSigIdVerificationPensMetadata() /** * Sets enable_d_sig_id_verification_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_verification_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_verification_pens_metadata * * @return $this */ @@ -14992,7 +14992,7 @@ public function getEnableDSigIdVerificationPremierPens() /** * Sets enable_d_sig_id_verification_premier_pens * - * @param ?string $enable_d_sig_id_verification_premier_pens + * @param ?string $enable_d_sig_id_verification_premier_pens * * @return $this */ @@ -15016,7 +15016,7 @@ public function getEnableDSigIdVerificationPremierPensMetadata() /** * Sets enable_d_sig_id_verification_premier_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_verification_premier_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_id_verification_premier_pens_metadata * * @return $this */ @@ -15040,7 +15040,7 @@ public function getEnableDSigPenGroupEuQes() /** * Sets enable_d_sig_pen_group_eu_qes * - * @param ?string $enable_d_sig_pen_group_eu_qes + * @param ?string $enable_d_sig_pen_group_eu_qes * * @return $this */ @@ -15064,7 +15064,7 @@ public function getEnableDSigPenGroupEuQesMetadata() /** * Sets enable_d_sig_pen_group_eu_qes_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_pen_group_eu_qes_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_pen_group_eu_qes_metadata * * @return $this */ @@ -15088,7 +15088,7 @@ public function getEnableDSigPlgEuQesPens() /** * Sets enable_d_sig_plg_eu_qes_pens * - * @param ?string $enable_d_sig_plg_eu_qes_pens + * @param ?string $enable_d_sig_plg_eu_qes_pens * * @return $this */ @@ -15112,7 +15112,7 @@ public function getEnableDSigPlgEuQesPensMetadata() /** * Sets enable_d_sig_plg_eu_qes_pens_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_plg_eu_qes_pens_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_d_sig_plg_eu_qes_pens_metadata * * @return $this */ @@ -15136,7 +15136,7 @@ public function getEnableDsPro() /** * Sets enable_ds_pro * - * @param ?string $enable_ds_pro + * @param ?string $enable_ds_pro * * @return $this */ @@ -15184,7 +15184,7 @@ public function getEnableEnforceTlsEmailsSettingMetadata() /** * Sets enable_enforce_tls_emails_setting_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_enforce_tls_emails_setting_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_enforce_tls_emails_setting_metadata * * @return $this */ @@ -15208,7 +15208,7 @@ public function getEnableEnvelopeStampingByAccountAdmin() /** * Sets enable_envelope_stamping_by_account_admin * - * @param ?string $enable_envelope_stamping_by_account_admin + * @param ?string $enable_envelope_stamping_by_account_admin * * @return $this */ @@ -15256,7 +15256,7 @@ public function getEnableEnvelopeStampingByDsAdmin() /** * Sets enable_envelope_stamping_by_ds_admin * - * @param ?string $enable_envelope_stamping_by_ds_admin + * @param ?string $enable_envelope_stamping_by_ds_admin * * @return $this */ @@ -15304,7 +15304,7 @@ public function getEnableESignApiHourlyLimitManagement() /** * Sets enable_e_sign_api_hourly_limit_management * - * @param ?string $enable_e_sign_api_hourly_limit_management + * @param ?string $enable_e_sign_api_hourly_limit_management * * @return $this */ @@ -15328,7 +15328,7 @@ public function getEnableESignApiHourlyLimitManagementMetadata() /** * Sets enable_e_sign_api_hourly_limit_management_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_e_sign_api_hourly_limit_management_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_e_sign_api_hourly_limit_management_metadata * * @return $this */ @@ -15352,7 +15352,7 @@ public function getEnableEsignCommunities() /** * Sets enable_esign_communities * - * @param ?string $enable_esign_communities + * @param ?string $enable_esign_communities * * @return $this */ @@ -15376,7 +15376,7 @@ public function getEnableEsignCommunitiesMetadata() /** * Sets enable_esign_communities_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_esign_communities_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_esign_communities_metadata * * @return $this */ @@ -15400,7 +15400,7 @@ public function getEnableEsignTaskList() /** * Sets enable_esign_task_list * - * @param ?string $enable_esign_task_list + * @param ?string $enable_esign_task_list * * @return $this */ @@ -15424,7 +15424,7 @@ public function getEnableEsignTaskListMetadata() /** * Sets enable_esign_task_list_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_esign_task_list_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_esign_task_list_metadata * * @return $this */ @@ -15448,7 +15448,7 @@ public function getEnableGenerationWith3PIntegration() /** * Sets enable_generation_with3_p_integration * - * @param ?string $enable_generation_with3_p_integration + * @param ?string $enable_generation_with3_p_integration * * @return $this */ @@ -15472,7 +15472,7 @@ public function getEnableGenerationWith3PIntegrationMetaData() /** * Sets enable_generation_with3_p_integration_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_generation_with3_p_integration_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_generation_with3_p_integration_meta_data * * @return $this */ @@ -15496,7 +15496,7 @@ public function getEnableIdFxAccountlessSmsAuthForPart11() /** * Sets enable_id_fx_accountless_sms_auth_for_part11 * - * @param ?string $enable_id_fx_accountless_sms_auth_for_part11 + * @param ?string $enable_id_fx_accountless_sms_auth_for_part11 * * @return $this */ @@ -15520,7 +15520,7 @@ public function getEnableIdFxAccountlessSmsAuthForPart11Metadata() /** * Sets enable_id_fx_accountless_sms_auth_for_part11_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_accountless_sms_auth_for_part11_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_accountless_sms_auth_for_part11_metadata * * @return $this */ @@ -15544,7 +15544,7 @@ public function getEnableIdFxIntuitKba() /** * Sets enable_id_fx_intuit_kba * - * @param ?string $enable_id_fx_intuit_kba + * @param ?string $enable_id_fx_intuit_kba * * @return $this */ @@ -15568,7 +15568,7 @@ public function getEnableIdFxIntuitKbaMetadata() /** * Sets enable_id_fx_intuit_kba_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_intuit_kba_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_intuit_kba_metadata * * @return $this */ @@ -15592,7 +15592,7 @@ public function getEnableIdFxPhoneAuthentication() /** * Sets enable_id_fx_phone_authentication * - * @param ?string $enable_id_fx_phone_authentication + * @param ?string $enable_id_fx_phone_authentication * * @return $this */ @@ -15616,7 +15616,7 @@ public function getEnableIdFxPhoneAuthenticationMetadata() /** * Sets enable_id_fx_phone_authentication_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_phone_authentication_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_id_fx_phone_authentication_metadata * * @return $this */ @@ -15640,7 +15640,7 @@ public function getEnableIdfxPhoneAuthSignatureAuthStatus() /** * Sets enable_idfx_phone_auth_signature_auth_status * - * @param ?string $enable_idfx_phone_auth_signature_auth_status + * @param ?string $enable_idfx_phone_auth_signature_auth_status * * @return $this */ @@ -15664,7 +15664,7 @@ public function getEnableIdfxPhoneAuthSignatureAuthStatusMetadata() /** * Sets enable_idfx_phone_auth_signature_auth_status_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_idfx_phone_auth_signature_auth_status_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_idfx_phone_auth_signature_auth_status_metadata * * @return $this */ @@ -15688,7 +15688,7 @@ public function getEnableInboxBrowseViewsPoweredByElasticSearch() /** * Sets enable_inbox_browse_views_powered_by_elastic_search * - * @param ?string $enable_inbox_browse_views_powered_by_elastic_search + * @param ?string $enable_inbox_browse_views_powered_by_elastic_search * * @return $this */ @@ -15712,7 +15712,7 @@ public function getEnableInboxBrowseViewsPoweredByElasticSearchMetadata() /** * Sets enable_inbox_browse_views_powered_by_elastic_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_inbox_browse_views_powered_by_elastic_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_inbox_browse_views_powered_by_elastic_search_metadata * * @return $this */ @@ -15736,7 +15736,7 @@ public function getEnableInboxRelevanceSort() /** * Sets enable_inbox_relevance_sort * - * @param ?string $enable_inbox_relevance_sort + * @param ?string $enable_inbox_relevance_sort * * @return $this */ @@ -15760,7 +15760,7 @@ public function getEnableInboxRelevanceSortMetadata() /** * Sets enable_inbox_relevance_sort_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_inbox_relevance_sort_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_inbox_relevance_sort_metadata * * @return $this */ @@ -15784,7 +15784,7 @@ public function getEnableInBrowserEditor() /** * Sets enable_in_browser_editor * - * @param ?string $enable_in_browser_editor + * @param ?string $enable_in_browser_editor * * @return $this */ @@ -15808,7 +15808,7 @@ public function getEnableInBrowserEditorMetadata() /** * Sets enable_in_browser_editor_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_in_browser_editor_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_in_browser_editor_metadata * * @return $this */ @@ -15832,7 +15832,7 @@ public function getEnableKeyTermsSuggestionsByDocumentType() /** * Sets enable_key_terms_suggestions_by_document_type * - * @param ?string $enable_key_terms_suggestions_by_document_type + * @param ?string $enable_key_terms_suggestions_by_document_type * * @return $this */ @@ -15856,7 +15856,7 @@ public function getEnableKeyTermsSuggestionsByDocumentTypeMetadata() /** * Sets enable_key_terms_suggestions_by_document_type_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_key_terms_suggestions_by_document_type_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_key_terms_suggestions_by_document_type_metadata * * @return $this */ @@ -15880,7 +15880,7 @@ public function getEnableLargeFileSupport() /** * Sets enable_large_file_support * - * @param ?string $enable_large_file_support + * @param ?string $enable_large_file_support * * @return $this */ @@ -15904,7 +15904,7 @@ public function getEnableLargeFileSupportMetadata() /** * Sets enable_large_file_support_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_large_file_support_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_large_file_support_metadata * * @return $this */ @@ -15928,7 +15928,7 @@ public function getEnableLegacySharedEnvelopes() /** * Sets enable_legacy_shared_envelopes * - * @param ?string $enable_legacy_shared_envelopes + * @param ?string $enable_legacy_shared_envelopes * * @return $this */ @@ -15952,7 +15952,7 @@ public function getEnableLegacySharedEnvelopesMetadata() /** * Sets enable_legacy_shared_envelopes_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_legacy_shared_envelopes_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_legacy_shared_envelopes_metadata * * @return $this */ @@ -15976,7 +15976,7 @@ public function getEnableLicenseManagement() /** * Sets enable_license_management * - * @param ?string $enable_license_management + * @param ?string $enable_license_management * * @return $this */ @@ -16000,7 +16000,7 @@ public function getEnableLicenseManagementMetadata() /** * Sets enable_license_management_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_license_management_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_license_management_metadata * * @return $this */ @@ -16024,7 +16024,7 @@ public function getEnableMicrosoftDynamics365Extension() /** * Sets enable_microsoft_dynamics365_extension * - * @param ?string $enable_microsoft_dynamics365_extension + * @param ?string $enable_microsoft_dynamics365_extension * * @return $this */ @@ -16048,7 +16048,7 @@ public function getEnableMicrosoftDynamics365ExtensionMetadata() /** * Sets enable_microsoft_dynamics365_extension_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_microsoft_dynamics365_extension_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_microsoft_dynamics365_extension_metadata * * @return $this */ @@ -16072,7 +16072,7 @@ public function getEnableMultiUserRepositoryFeatures() /** * Sets enable_multi_user_repository_features * - * @param ?string $enable_multi_user_repository_features + * @param ?string $enable_multi_user_repository_features * * @return $this */ @@ -16096,7 +16096,7 @@ public function getEnableMultiUserRepositoryFeaturesMetadata() /** * Sets enable_multi_user_repository_features_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_multi_user_repository_features_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_multi_user_repository_features_metadata * * @return $this */ @@ -16120,7 +16120,7 @@ public function getEnableNavigatorForHr() /** * Sets enable_navigator_for_hr * - * @param ?string $enable_navigator_for_hr + * @param ?string $enable_navigator_for_hr * * @return $this */ @@ -16144,7 +16144,7 @@ public function getEnableNavigatorForHrMetadata() /** * Sets enable_navigator_for_hr_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_for_hr_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_for_hr_metadata * * @return $this */ @@ -16168,7 +16168,7 @@ public function getEnableNavigatorPartialIngestion() /** * Sets enable_navigator_partial_ingestion * - * @param ?string $enable_navigator_partial_ingestion + * @param ?string $enable_navigator_partial_ingestion * * @return $this */ @@ -16192,7 +16192,7 @@ public function getEnableNavigatorPartialIngestionMetadata() /** * Sets enable_navigator_partial_ingestion_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_partial_ingestion_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_partial_ingestion_metadata * * @return $this */ @@ -16216,7 +16216,7 @@ public function getEnableNavigatorTrial() /** * Sets enable_navigator_trial * - * @param ?string $enable_navigator_trial + * @param ?string $enable_navigator_trial * * @return $this */ @@ -16240,7 +16240,7 @@ public function getEnableNavigatorTrialMetadata() /** * Sets enable_navigator_trial_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_trial_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_navigator_trial_metadata * * @return $this */ @@ -16264,7 +16264,7 @@ public function getEnableObligationManagement() /** * Sets enable_obligation_management * - * @param ?string $enable_obligation_management + * @param ?string $enable_obligation_management * * @return $this */ @@ -16288,7 +16288,7 @@ public function getEnableObligationManagementMetadata() /** * Sets enable_obligation_management_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_obligation_management_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_obligation_management_metadata * * @return $this */ @@ -16312,7 +16312,7 @@ public function getEnableParticipantRecipientSettingMetadata() /** * Sets enable_participant_recipient_setting_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_participant_recipient_setting_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_participant_recipient_setting_metadata * * @return $this */ @@ -16336,7 +16336,7 @@ public function getEnablePaymentProcessing() /** * Sets enable_payment_processing * - * @param ?string $enable_payment_processing + * @param ?string $enable_payment_processing * * @return $this */ @@ -16384,7 +16384,7 @@ public function getEnablePdfaConversion() /** * Sets enable_pdfa_conversion * - * @param ?string $enable_pdfa_conversion + * @param ?string $enable_pdfa_conversion * * @return $this */ @@ -16408,7 +16408,7 @@ public function getEnablePdfaConversionMetadata() /** * Sets enable_pdfa_conversion_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_pdfa_conversion_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_pdfa_conversion_metadata * * @return $this */ @@ -16432,7 +16432,7 @@ public function getEnablePowerForm() /** * Sets enable_power_form * - * @param ?string $enable_power_form + * @param ?string $enable_power_form * * @return $this */ @@ -16456,7 +16456,7 @@ public function getEnablePowerFormDirect() /** * Sets enable_power_form_direct * - * @param ?string $enable_power_form_direct + * @param ?string $enable_power_form_direct * * @return $this */ @@ -16528,7 +16528,7 @@ public function getEnablePremiumDataVerificationExtensions() /** * Sets enable_premium_data_verification_extensions * - * @param ?string $enable_premium_data_verification_extensions + * @param ?string $enable_premium_data_verification_extensions * * @return $this */ @@ -16552,7 +16552,7 @@ public function getEnablePremiumDataVerificationExtensionsMetadata() /** * Sets enable_premium_data_verification_extensions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_premium_data_verification_extensions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_premium_data_verification_extensions_metadata * * @return $this */ @@ -16576,7 +16576,7 @@ public function getEnableRecipientDomainValidation() /** * Sets enable_recipient_domain_validation * - * @param ?string $enable_recipient_domain_validation + * @param ?string $enable_recipient_domain_validation * * @return $this */ @@ -16624,7 +16624,7 @@ public function getEnableRecipientMayProvidePhoneNumber() /** * Sets enable_recipient_may_provide_phone_number * - * @param ?string $enable_recipient_may_provide_phone_number + * @param ?string $enable_recipient_may_provide_phone_number * * @return $this */ @@ -16648,7 +16648,7 @@ public function getEnableRecipientMayProvidePhoneNumberMetadata() /** * Sets enable_recipient_may_provide_phone_number_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_recipient_may_provide_phone_number_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_recipient_may_provide_phone_number_metadata * * @return $this */ @@ -16672,7 +16672,7 @@ public function getEnableReportLinks() /** * Sets enable_report_links * - * @param ?string $enable_report_links + * @param ?string $enable_report_links * * @return $this */ @@ -16720,7 +16720,7 @@ public function getEnableRequireSignOnPaper() /** * Sets enable_require_sign_on_paper * - * @param ?string $enable_require_sign_on_paper + * @param ?string $enable_require_sign_on_paper * * @return $this */ @@ -16768,7 +16768,7 @@ public function getEnableReservedDomain() /** * Sets enable_reserved_domain * - * @param ?string $enable_reserved_domain + * @param ?string $enable_reserved_domain * * @return $this */ @@ -16816,7 +16816,7 @@ public function getEnableResponsiveSigning() /** * Sets enable_responsive_signing * - * @param ?string $enable_responsive_signing + * @param ?string $enable_responsive_signing * * @return $this */ @@ -16864,7 +16864,7 @@ public function getEnableSapAribaExtension() /** * Sets enable_sap_ariba_extension * - * @param ?string $enable_sap_ariba_extension + * @param ?string $enable_sap_ariba_extension * * @return $this */ @@ -16888,7 +16888,7 @@ public function getEnableSapAribaExtensionMetaData() /** * Sets enable_sap_ariba_extension_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_sap_ariba_extension_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_sap_ariba_extension_meta_data * * @return $this */ @@ -16912,7 +16912,7 @@ public function getEnableScheduledRelease() /** * Sets enable_scheduled_release * - * @param ?string $enable_scheduled_release + * @param ?string $enable_scheduled_release * * @return $this */ @@ -16960,7 +16960,7 @@ public function getEnableSearchServiceAzureUri() /** * Sets enable_search_service_azure_uri * - * @param ?string $enable_search_service_azure_uri + * @param ?string $enable_search_service_azure_uri * * @return $this */ @@ -16984,7 +16984,7 @@ public function getEnableSearchServiceAzureUriMetadata() /** * Sets enable_search_service_azure_uri_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_search_service_azure_uri_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_search_service_azure_uri_metadata * * @return $this */ @@ -17008,7 +17008,7 @@ public function getEnableSearchSiteSpecificApi() /** * Sets enable_search_site_specific_api * - * @param ?string $enable_search_site_specific_api + * @param ?string $enable_search_site_specific_api * * @return $this */ @@ -17032,7 +17032,7 @@ public function getEnableSearchSiteSpecificApiMetadata() /** * Sets enable_search_site_specific_api_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_search_site_specific_api_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_search_site_specific_api_metadata * * @return $this */ @@ -17056,7 +17056,7 @@ public function getEnableSendingTagsFontSettings() /** * Sets enable_sending_tags_font_settings * - * @param ?string $enable_sending_tags_font_settings + * @param ?string $enable_sending_tags_font_settings * * @return $this */ @@ -17104,7 +17104,7 @@ public function getEnableSendToAgent() /** * Sets enable_send_to_agent * - * @param ?string $enable_send_to_agent + * @param ?string $enable_send_to_agent * * @return $this */ @@ -17152,7 +17152,7 @@ public function getEnableSendToIntermediary() /** * Sets enable_send_to_intermediary * - * @param ?string $enable_send_to_intermediary + * @param ?string $enable_send_to_intermediary * * @return $this */ @@ -17200,7 +17200,7 @@ public function getEnableSendToManage() /** * Sets enable_send_to_manage * - * @param ?string $enable_send_to_manage + * @param ?string $enable_send_to_manage * * @return $this */ @@ -17248,7 +17248,7 @@ public function getEnableSequentialSigningApi() /** * Sets enable_sequential_signing_api * - * @param ?string $enable_sequential_signing_api + * @param ?string $enable_sequential_signing_api * * @return $this */ @@ -17296,7 +17296,7 @@ public function getEnableSequentialSigningUi() /** * Sets enable_sequential_signing_ui * - * @param ?string $enable_sequential_signing_ui + * @param ?string $enable_sequential_signing_ui * * @return $this */ @@ -17344,7 +17344,7 @@ public function getEnableSignerAttachments() /** * Sets enable_signer_attachments * - * @param ?string $enable_signer_attachments + * @param ?string $enable_signer_attachments * * @return $this */ @@ -17392,7 +17392,7 @@ public function getEnableSigningAiFeaturesPlan() /** * Sets enable_signing_ai_features_plan * - * @param ?string $enable_signing_ai_features_plan + * @param ?string $enable_signing_ai_features_plan * * @return $this */ @@ -17416,7 +17416,7 @@ public function getEnableSigningAiFeaturesPlanMetadata() /** * Sets enable_signing_ai_features_plan_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_ai_features_plan_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_ai_features_plan_metadata * * @return $this */ @@ -17440,7 +17440,7 @@ public function getEnableSigningAiFeaturesSetting() /** * Sets enable_signing_ai_features_setting * - * @param ?string $enable_signing_ai_features_setting + * @param ?string $enable_signing_ai_features_setting * * @return $this */ @@ -17464,7 +17464,7 @@ public function getEnableSigningAiFeaturesSettingMetadata() /** * Sets enable_signing_ai_features_setting_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_ai_features_setting_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_ai_features_setting_metadata * * @return $this */ @@ -17488,7 +17488,7 @@ public function getEnableSigningExtensionComments() /** * Sets enable_signing_extension_comments * - * @param ?string $enable_signing_extension_comments + * @param ?string $enable_signing_extension_comments * * @return $this */ @@ -17536,7 +17536,7 @@ public function getEnableSigningExtensionConversations() /** * Sets enable_signing_extension_conversations * - * @param ?string $enable_signing_extension_conversations + * @param ?string $enable_signing_extension_conversations * * @return $this */ @@ -17584,7 +17584,7 @@ public function getEnableSigningGroupContinuePageSetting() /** * Sets enable_signing_group_continue_page_setting * - * @param ?string $enable_signing_group_continue_page_setting + * @param ?string $enable_signing_group_continue_page_setting * * @return $this */ @@ -17608,7 +17608,7 @@ public function getEnableSigningGroupContinuePageSettingMetadata() /** * Sets enable_signing_group_continue_page_setting_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_group_continue_page_setting_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_signing_group_continue_page_setting_metadata * * @return $this */ @@ -17632,7 +17632,7 @@ public function getEnableSigningOrderSettingsForAccount() /** * Sets enable_signing_order_settings_for_account * - * @param ?string $enable_signing_order_settings_for_account + * @param ?string $enable_signing_order_settings_for_account * * @return $this */ @@ -17680,7 +17680,7 @@ public function getEnableSignOnPaper() /** * Sets enable_sign_on_paper * - * @param ?string $enable_sign_on_paper + * @param ?string $enable_sign_on_paper * * @return $this */ @@ -17728,7 +17728,7 @@ public function getEnableSignOnPaperOverride() /** * Sets enable_sign_on_paper_override * - * @param ?string $enable_sign_on_paper_override + * @param ?string $enable_sign_on_paper_override * * @return $this */ @@ -17776,7 +17776,7 @@ public function getEnableSignWithNotary() /** * Sets enable_sign_with_notary * - * @param ?string $enable_sign_with_notary + * @param ?string $enable_sign_with_notary * * @return $this */ @@ -17824,7 +17824,7 @@ public function getEnableSmartContracts() /** * Sets enable_smart_contracts * - * @param ?string $enable_smart_contracts + * @param ?string $enable_smart_contracts * * @return $this */ @@ -17872,7 +17872,7 @@ public function getEnableSmsAuthentication() /** * Sets enable_sms_authentication * - * @param ?string $enable_sms_authentication + * @param ?string $enable_sms_authentication * * @return $this */ @@ -17920,7 +17920,7 @@ public function getEnableSmsDeliveryAdditionalNotification() /** * Sets enable_sms_delivery_additional_notification * - * @param ?string $enable_sms_delivery_additional_notification + * @param ?string $enable_sms_delivery_additional_notification * * @return $this */ @@ -17944,7 +17944,7 @@ public function getEnableSmsDeliveryAdditionalNotificationMetadata() /** * Sets enable_sms_delivery_additional_notification_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_sms_delivery_additional_notification_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_sms_delivery_additional_notification_metadata * * @return $this */ @@ -17968,7 +17968,7 @@ public function getEnableSmsDeliveryPrimary() /** * Sets enable_sms_delivery_primary * - * @param ?string $enable_sms_delivery_primary + * @param ?string $enable_sms_delivery_primary * * @return $this */ @@ -17992,7 +17992,7 @@ public function getEnableSocialIdLogin() /** * Sets enable_social_id_login * - * @param ?string $enable_social_id_login + * @param ?string $enable_social_id_login * * @return $this */ @@ -18040,7 +18040,7 @@ public function getEnableStrikeThrough() /** * Sets enable_strike_through * - * @param ?string $enable_strike_through + * @param ?string $enable_strike_through * * @return $this */ @@ -18088,7 +18088,7 @@ public function getEnableTickets() /** * Sets enable_tickets * - * @param ?string $enable_tickets + * @param ?string $enable_tickets * * @return $this */ @@ -18112,7 +18112,7 @@ public function getEnableTicketsMetaData() /** * Sets enable_tickets_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_tickets_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_tickets_meta_data * * @return $this */ @@ -18136,7 +18136,7 @@ public function getEnableTransactionPoint() /** * Sets enable_transaction_point * - * @param ?string $enable_transaction_point + * @param ?string $enable_transaction_point * * @return $this */ @@ -18184,7 +18184,7 @@ public function getEnableUnifiedRepository() /** * Sets enable_unified_repository * - * @param ?string $enable_unified_repository + * @param ?string $enable_unified_repository * * @return $this */ @@ -18208,7 +18208,7 @@ public function getEnableUnifiedRepositoryMetadata() /** * Sets enable_unified_repository_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_unified_repository_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_unified_repository_metadata * * @return $this */ @@ -18232,7 +18232,7 @@ public function getEnableVaulting() /** * Sets enable_vaulting * - * @param ?string $enable_vaulting + * @param ?string $enable_vaulting * * @return $this */ @@ -18280,7 +18280,7 @@ public function getEnableWebFormsRuntimeApIs() /** * Sets enable_web_forms_runtime_ap_is * - * @param ?string $enable_web_forms_runtime_ap_is + * @param ?string $enable_web_forms_runtime_ap_is * * @return $this */ @@ -18304,7 +18304,7 @@ public function getEnableWebFormsRuntimeApIsMetadata() /** * Sets enable_web_forms_runtime_ap_is_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_web_forms_runtime_ap_is_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_web_forms_runtime_ap_is_metadata * * @return $this */ @@ -18328,7 +18328,7 @@ public function getEnableWebFormsSeparateUserPermissions() /** * Sets enable_web_forms_separate_user_permissions * - * @param ?string $enable_web_forms_separate_user_permissions + * @param ?string $enable_web_forms_separate_user_permissions * * @return $this */ @@ -18352,7 +18352,7 @@ public function getEnableWebFormsSeparateUserPermissionsMetadata() /** * Sets enable_web_forms_separate_user_permissions_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_web_forms_separate_user_permissions_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_web_forms_separate_user_permissions_metadata * * @return $this */ @@ -18376,7 +18376,7 @@ public function getEnableWitnessing() /** * Sets enable_witnessing * - * @param ?string $enable_witnessing + * @param ?string $enable_witnessing * * @return $this */ @@ -18424,7 +18424,7 @@ public function getEnableWorkdayFinancialsExtension() /** * Sets enable_workday_financials_extension * - * @param ?string $enable_workday_financials_extension + * @param ?string $enable_workday_financials_extension * * @return $this */ @@ -18448,7 +18448,7 @@ public function getEnableWorkdayFinancialsExtensionMetaData() /** * Sets enable_workday_financials_extension_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_workday_financials_extension_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_workday_financials_extension_meta_data * * @return $this */ @@ -18472,7 +18472,7 @@ public function getEnforceTemplateNameUniqueness() /** * Sets enforce_template_name_uniqueness * - * @param ?string $enforce_template_name_uniqueness + * @param ?string $enforce_template_name_uniqueness * * @return $this */ @@ -18520,7 +18520,7 @@ public function getEnforceTlsEmails() /** * Sets enforce_tls_emails * - * @param ?string $enforce_tls_emails + * @param ?string $enforce_tls_emails * * @return $this */ @@ -18544,7 +18544,7 @@ public function getEnforceTlsEmailsMetadata() /** * Sets enforce_tls_emails_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enforce_tls_emails_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enforce_tls_emails_metadata * * @return $this */ @@ -18568,7 +18568,7 @@ public function getEnvelopeIntegrationAllowed() /** * Sets envelope_integration_allowed * - * @param ?string $envelope_integration_allowed + * @param ?string $envelope_integration_allowed * * @return $this */ @@ -18616,7 +18616,7 @@ public function getEnvelopeIntegrationEnabled() /** * Sets envelope_integration_enabled * - * @param ?string $envelope_integration_enabled + * @param ?string $envelope_integration_enabled * * @return $this */ @@ -18664,7 +18664,7 @@ public function getEnvelopeLimitsTotalDocumentSizeAllowedInMb() /** * Sets envelope_limits_total_document_size_allowed_in_mb * - * @param ?string $envelope_limits_total_document_size_allowed_in_mb + * @param ?string $envelope_limits_total_document_size_allowed_in_mb * * @return $this */ @@ -18688,7 +18688,7 @@ public function getEnvelopeLimitsTotalDocumentSizeAllowedInMbEnabled() /** * Sets envelope_limits_total_document_size_allowed_in_mb_enabled * - * @param ?string $envelope_limits_total_document_size_allowed_in_mb_enabled + * @param ?string $envelope_limits_total_document_size_allowed_in_mb_enabled * * @return $this */ @@ -18712,7 +18712,7 @@ public function getEnvelopeLimitsTotalDocumentSizeAllowedInMbEnabledMetadata() /** * Sets envelope_limits_total_document_size_allowed_in_mb_enabled_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_limits_total_document_size_allowed_in_mb_enabled_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_limits_total_document_size_allowed_in_mb_enabled_metadata * * @return $this */ @@ -18736,7 +18736,7 @@ public function getEnvelopeLimitsTotalDocumentSizeAllowedInMbMetadata() /** * Sets envelope_limits_total_document_size_allowed_in_mb_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_limits_total_document_size_allowed_in_mb_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_limits_total_document_size_allowed_in_mb_metadata * * @return $this */ @@ -18760,7 +18760,7 @@ public function getEnvelopeSearchMode() /** * Sets envelope_search_mode * - * @param ?string $envelope_search_mode + * @param ?string $envelope_search_mode * * @return $this */ @@ -18784,7 +18784,7 @@ public function getEnvelopeSearchModeMetadata() /** * Sets envelope_search_mode_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_search_mode_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $envelope_search_mode_metadata * * @return $this */ @@ -18808,7 +18808,7 @@ public function getEnvelopeStampingDefaultValue() /** * Sets envelope_stamping_default_value * - * @param ?string $envelope_stamping_default_value + * @param ?string $envelope_stamping_default_value * * @return $this */ @@ -18856,7 +18856,7 @@ public function getExitPrompt() /** * Sets exit_prompt * - * @param ?string $exit_prompt + * @param ?string $exit_prompt * * @return $this */ @@ -18880,7 +18880,7 @@ public function getExitPromptMetadata() /** * Sets exit_prompt_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $exit_prompt_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $exit_prompt_metadata * * @return $this */ @@ -18904,7 +18904,7 @@ public function getExpressSend() /** * Sets express_send * - * @param ?string $express_send + * @param ?string $express_send * * @return $this */ @@ -18928,7 +18928,7 @@ public function getExpressSendAllowTabs() /** * Sets express_send_allow_tabs * - * @param ?string $express_send_allow_tabs + * @param ?string $express_send_allow_tabs * * @return $this */ @@ -19024,7 +19024,7 @@ public function getExternalSignaturePadType() /** * Sets external_signature_pad_type * - * @param ?string $external_signature_pad_type + * @param ?string $external_signature_pad_type * * @return $this */ @@ -19072,7 +19072,7 @@ public function getFaxOutEnabled() /** * Sets fax_out_enabled * - * @param ?string $fax_out_enabled + * @param ?string $fax_out_enabled * * @return $this */ @@ -19120,7 +19120,7 @@ public function getFinishReminder() /** * Sets finish_reminder * - * @param ?string $finish_reminder + * @param ?string $finish_reminder * * @return $this */ @@ -19144,7 +19144,7 @@ public function getFinishReminderMetadata() /** * Sets finish_reminder_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $finish_reminder_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $finish_reminder_metadata * * @return $this */ @@ -19168,7 +19168,7 @@ public function getForbidAddingUserStamps() /** * Sets forbid_adding_user_stamps * - * @param ?string $forbid_adding_user_stamps + * @param ?string $forbid_adding_user_stamps * * @return $this */ @@ -19192,7 +19192,7 @@ public function getForbidAddingUserStampsMetadata() /** * Sets forbid_adding_user_stamps_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $forbid_adding_user_stamps_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $forbid_adding_user_stamps_metadata * * @return $this */ @@ -19216,7 +19216,7 @@ public function getGuidedFormsHtmlAllowed() /** * Sets guided_forms_html_allowed * - * @param ?string $guided_forms_html_allowed + * @param ?string $guided_forms_html_allowed * * @return $this */ @@ -19240,7 +19240,7 @@ public function getGuidedFormsHtmlAllowedMetadata() /** * Sets guided_forms_html_allowed_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $guided_forms_html_allowed_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $guided_forms_html_allowed_metadata * * @return $this */ @@ -19264,7 +19264,7 @@ public function getGuidedFormsHtmlConversionPolicy() /** * Sets guided_forms_html_conversion_policy * - * @param ?string $guided_forms_html_conversion_policy + * @param ?string $guided_forms_html_conversion_policy * * @return $this */ @@ -19288,7 +19288,7 @@ public function getGuidedFormsHtmlConversionPolicyMetadata() /** * Sets guided_forms_html_conversion_policy_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $guided_forms_html_conversion_policy_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $guided_forms_html_conversion_policy_metadata * * @return $this */ @@ -19312,7 +19312,7 @@ public function getHasRecipientConnectClaimedDomain() /** * Sets has_recipient_connect_claimed_domain * - * @param ?string $has_recipient_connect_claimed_domain + * @param ?string $has_recipient_connect_claimed_domain * * @return $this */ @@ -19336,7 +19336,7 @@ public function getHideAccountAddressInCoC() /** * Sets hide_account_address_in_co_c * - * @param ?string $hide_account_address_in_co_c + * @param ?string $hide_account_address_in_co_c * * @return $this */ @@ -19384,7 +19384,7 @@ public function getHidePricing() /** * Sets hide_pricing * - * @param ?string $hide_pricing + * @param ?string $hide_pricing * * @return $this */ @@ -19432,7 +19432,7 @@ public function getIdCheckConfigurations() /** * Sets id_check_configurations * - * @param \DocuSign\eSign\Model\IdCheckConfiguration[] $id_check_configurations + * @param \DocuSign\eSign\Model\IdCheckConfiguration[] $id_check_configurations * * @return $this */ @@ -19456,7 +19456,7 @@ public function getIdCheckExpire() /** * Sets id_check_expire * - * @param ?string $id_check_expire + * @param ?string $id_check_expire * * @return $this */ @@ -19480,7 +19480,7 @@ public function getIdCheckExpireDays() /** * Sets id_check_expire_days * - * @param ?string $id_check_expire_days + * @param ?string $id_check_expire_days * * @return $this */ @@ -19552,7 +19552,7 @@ public function getIdCheckExpireMinutes() /** * Sets id_check_expire_minutes * - * @param ?string $id_check_expire_minutes + * @param ?string $id_check_expire_minutes * * @return $this */ @@ -19600,7 +19600,7 @@ public function getIdCheckRequired() /** * Sets id_check_required * - * @param ?string $id_check_required + * @param ?string $id_check_required * * @return $this */ @@ -19648,7 +19648,7 @@ public function getIdentityVerification() /** * Sets identity_verification * - * @param \DocuSign\eSign\Model\AccountIdentityVerificationWorkflow[] $identity_verification + * @param \DocuSign\eSign\Model\AccountIdentityVerificationWorkflow[] $identity_verification * * @return $this */ @@ -19696,7 +19696,7 @@ public function getIdfxKbaAuthenticationOverride() /** * Sets idfx_kba_authentication_override * - * @param ?string $idfx_kba_authentication_override + * @param ?string $idfx_kba_authentication_override * * @return $this */ @@ -19720,7 +19720,7 @@ public function getIdfxKbaAuthenticationOverrideMetadata() /** * Sets idfx_kba_authentication_override_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $idfx_kba_authentication_override_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $idfx_kba_authentication_override_metadata * * @return $this */ @@ -19744,7 +19744,7 @@ public function getIdfxPhoneAuthenticationOverride() /** * Sets idfx_phone_authentication_override * - * @param ?string $idfx_phone_authentication_override + * @param ?string $idfx_phone_authentication_override * * @return $this */ @@ -19768,7 +19768,7 @@ public function getIdfxPhoneAuthenticationOverrideMetadata() /** * Sets idfx_phone_authentication_override_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $idfx_phone_authentication_override_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $idfx_phone_authentication_override_metadata * * @return $this */ @@ -19792,7 +19792,7 @@ public function getIgnoreErrorIfAnchorTabNotFound() /** * Sets ignore_error_if_anchor_tab_not_found * - * @param ?string $ignore_error_if_anchor_tab_not_found + * @param ?string $ignore_error_if_anchor_tab_not_found * * @return $this */ @@ -19840,7 +19840,7 @@ public function getInPersonIdCheckQuestion() /** * Sets in_person_id_check_question * - * @param ?string $in_person_id_check_question + * @param ?string $in_person_id_check_question * * @return $this */ @@ -19888,7 +19888,7 @@ public function getInPersonSigningEnabled() /** * Sets in_person_signing_enabled * - * @param ?string $in_person_signing_enabled + * @param ?string $in_person_signing_enabled * * @return $this */ @@ -19936,7 +19936,7 @@ public function getInSessionEnabled() /** * Sets in_session_enabled * - * @param ?string $in_session_enabled + * @param ?string $in_session_enabled * * @return $this */ @@ -19984,7 +19984,7 @@ public function getInSessionSuppressEmails() /** * Sets in_session_suppress_emails * - * @param ?string $in_session_suppress_emails + * @param ?string $in_session_suppress_emails * * @return $this */ @@ -20032,7 +20032,7 @@ public function getIsConnectDocumentFieldsEnabled() /** * Sets is_connect_document_fields_enabled * - * @param ?string $is_connect_document_fields_enabled + * @param ?string $is_connect_document_fields_enabled * * @return $this */ @@ -20056,7 +20056,7 @@ public function getIsvEmbed() /** * Sets isv_embed * - * @param ?string $isv_embed + * @param ?string $isv_embed * * @return $this */ @@ -20080,7 +20080,7 @@ public function getIsvEmbedMetaData() /** * Sets isv_embed_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $isv_embed_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $isv_embed_meta_data * * @return $this */ @@ -20104,7 +20104,7 @@ public function getIsvOemEmbed() /** * Sets isv_oem_embed * - * @param ?string $isv_oem_embed + * @param ?string $isv_oem_embed * * @return $this */ @@ -20128,7 +20128,7 @@ public function getIsvOemEmbedMetaData() /** * Sets isv_oem_embed_meta_data * - * @param \DocuSign\eSign\Model\SettingsMetadata $isv_oem_embed_meta_data + * @param \DocuSign\eSign\Model\SettingsMetadata $isv_oem_embed_meta_data * * @return $this */ @@ -20152,7 +20152,7 @@ public function getLinkedExternalPrimaryAccounts() /** * Sets linked_external_primary_accounts * - * @param \DocuSign\eSign\Model\LinkedExternalPrimaryAccount[] $linked_external_primary_accounts + * @param \DocuSign\eSign\Model\LinkedExternalPrimaryAccount[] $linked_external_primary_accounts * * @return $this */ @@ -20176,7 +20176,7 @@ public function getMaestroPlanLevels() /** * Sets maestro_plan_levels * - * @param ?string $maestro_plan_levels + * @param ?string $maestro_plan_levels * * @return $this */ @@ -20200,7 +20200,7 @@ public function getMaestroPlanLevelsMetadata() /** * Sets maestro_plan_levels_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $maestro_plan_levels_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $maestro_plan_levels_metadata * * @return $this */ @@ -20224,7 +20224,7 @@ public function getMaximumSigningGroups() /** * Sets maximum_signing_groups * - * @param ?string $maximum_signing_groups + * @param ?string $maximum_signing_groups * * @return $this */ @@ -20272,7 +20272,7 @@ public function getMaximumUsersPerSigningGroup() /** * Sets maximum_users_per_signing_group * - * @param ?string $maximum_users_per_signing_group + * @param ?string $maximum_users_per_signing_group * * @return $this */ @@ -20320,7 +20320,7 @@ public function getMaxNumberOfCustomStamps() /** * Sets max_number_of_custom_stamps * - * @param ?string $max_number_of_custom_stamps + * @param ?string $max_number_of_custom_stamps * * @return $this */ @@ -20344,7 +20344,7 @@ public function getMergeMixedModeResults() /** * Sets merge_mixed_mode_results * - * @param ?string $merge_mixed_mode_results + * @param ?string $merge_mixed_mode_results * * @return $this */ @@ -20368,7 +20368,7 @@ public function getMergeMixedModeResultsMetadata() /** * Sets merge_mixed_mode_results_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $merge_mixed_mode_results_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $merge_mixed_mode_results_metadata * * @return $this */ @@ -20392,7 +20392,7 @@ public function getMobileSessionTimeout() /** * Sets mobile_session_timeout * - * @param ?string $mobile_session_timeout + * @param ?string $mobile_session_timeout * * @return $this */ @@ -20440,7 +20440,7 @@ public function getNumberOfActiveCustomStamps() /** * Sets number_of_active_custom_stamps * - * @param ?string $number_of_active_custom_stamps + * @param ?string $number_of_active_custom_stamps * * @return $this */ @@ -20464,7 +20464,7 @@ public function getOptInMobileSigningV02() /** * Sets opt_in_mobile_signing_v02 * - * @param ?string $opt_in_mobile_signing_v02 + * @param ?string $opt_in_mobile_signing_v02 * * @return $this */ @@ -20512,7 +20512,7 @@ public function getOptInUniversalSignatures() /** * Sets opt_in_universal_signatures * - * @param ?string $opt_in_universal_signatures + * @param ?string $opt_in_universal_signatures * * @return $this */ @@ -20536,7 +20536,7 @@ public function getOptOutAutoNavTextAndTabColorUpdates() /** * Sets opt_out_auto_nav_text_and_tab_color_updates * - * @param ?string $opt_out_auto_nav_text_and_tab_color_updates + * @param ?string $opt_out_auto_nav_text_and_tab_color_updates * * @return $this */ @@ -20584,7 +20584,7 @@ public function getOptOutNewPlatformSeal() /** * Sets opt_out_new_platform_seal * - * @param ?string $opt_out_new_platform_seal + * @param ?string $opt_out_new_platform_seal * * @return $this */ @@ -20632,7 +20632,7 @@ public function getOriginalAccountSite() /** * Sets original_account_site * - * @param ?string $original_account_site + * @param ?string $original_account_site * * @return $this */ @@ -20656,7 +20656,7 @@ public function getParticipantCopyOptOut() /** * Sets participant_copy_opt_out * - * @param ?string $participant_copy_opt_out + * @param ?string $participant_copy_opt_out * * @return $this */ @@ -20680,7 +20680,7 @@ public function getParticipantCopyOptOutMetadata() /** * Sets participant_copy_opt_out_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $participant_copy_opt_out_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $participant_copy_opt_out_metadata * * @return $this */ @@ -20704,7 +20704,7 @@ public function getPdfMaxChunkedUploadPartSize() /** * Sets pdf_max_chunked_upload_part_size * - * @param ?string $pdf_max_chunked_upload_part_size + * @param ?string $pdf_max_chunked_upload_part_size * * @return $this */ @@ -20728,7 +20728,7 @@ public function getPdfMaxChunkedUploadPartSizeMetadata() /** * Sets pdf_max_chunked_upload_part_size_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_chunked_upload_part_size_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_chunked_upload_part_size_metadata * * @return $this */ @@ -20752,7 +20752,7 @@ public function getPdfMaxChunkedUploadTotalSize() /** * Sets pdf_max_chunked_upload_total_size * - * @param ?string $pdf_max_chunked_upload_total_size + * @param ?string $pdf_max_chunked_upload_total_size * * @return $this */ @@ -20776,7 +20776,7 @@ public function getPdfMaxChunkedUploadTotalSizeMetadata() /** * Sets pdf_max_chunked_upload_total_size_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_chunked_upload_total_size_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_chunked_upload_total_size_metadata * * @return $this */ @@ -20800,7 +20800,7 @@ public function getPdfMaxIndividualUploadSize() /** * Sets pdf_max_individual_upload_size * - * @param ?string $pdf_max_individual_upload_size + * @param ?string $pdf_max_individual_upload_size * * @return $this */ @@ -20824,7 +20824,7 @@ public function getPdfMaxIndividualUploadSizeMetadata() /** * Sets pdf_max_individual_upload_size_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_individual_upload_size_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $pdf_max_individual_upload_size_metadata * * @return $this */ @@ -20848,7 +20848,7 @@ public function getPhoneAuthRecipientMayProvidePhoneNumber() /** * Sets phone_auth_recipient_may_provide_phone_number * - * @param ?string $phone_auth_recipient_may_provide_phone_number + * @param ?string $phone_auth_recipient_may_provide_phone_number * * @return $this */ @@ -20896,7 +20896,7 @@ public function getPkiSignDownloadedPdfDocs() /** * Sets pki_sign_downloaded_pdf_docs * - * @param ?string $pki_sign_downloaded_pdf_docs + * @param ?string $pki_sign_downloaded_pdf_docs * * @return $this */ @@ -20944,7 +20944,7 @@ public function getReadOnlyMode() /** * Sets read_only_mode * - * @param ?string $read_only_mode + * @param ?string $read_only_mode * * @return $this */ @@ -20968,7 +20968,7 @@ public function getReadOnlyModeMetadata() /** * Sets read_only_mode_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $read_only_mode_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $read_only_mode_metadata * * @return $this */ @@ -20992,7 +20992,7 @@ public function getRecipientsCanSignOffline() /** * Sets recipients_can_sign_offline * - * @param ?string $recipients_can_sign_offline + * @param ?string $recipients_can_sign_offline * * @return $this */ @@ -21040,7 +21040,7 @@ public function getRecipientSigningAutoNavigationControl() /** * Sets recipient_signing_auto_navigation_control * - * @param ?string $recipient_signing_auto_navigation_control + * @param ?string $recipient_signing_auto_navigation_control * * @return $this */ @@ -21088,7 +21088,7 @@ public function getRecycleBinEnvelopeRetention() /** * Sets recycle_bin_envelope_retention * - * @param ?string $recycle_bin_envelope_retention + * @param ?string $recycle_bin_envelope_retention * * @return $this */ @@ -21112,7 +21112,7 @@ public function getRecycleBinEnvelopeRetentionMetadata() /** * Sets recycle_bin_envelope_retention_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $recycle_bin_envelope_retention_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $recycle_bin_envelope_retention_metadata * * @return $this */ @@ -21136,7 +21136,7 @@ public function getRequire21CfRpt11Compliance() /** * Sets require21_cf_rpt11_compliance * - * @param ?string $require21_cf_rpt11_compliance + * @param ?string $require21_cf_rpt11_compliance * * @return $this */ @@ -21184,7 +21184,7 @@ public function getRequireDeclineReason() /** * Sets require_decline_reason * - * @param ?string $require_decline_reason + * @param ?string $require_decline_reason * * @return $this */ @@ -21232,7 +21232,7 @@ public function getRequireExternalUserManagement() /** * Sets require_external_user_management * - * @param ?string $require_external_user_management + * @param ?string $require_external_user_management * * @return $this */ @@ -21280,7 +21280,7 @@ public function getRequireSignerCertificateType() /** * Sets require_signer_certificate_type * - * @param ?string $require_signer_certificate_type + * @param ?string $require_signer_certificate_type * * @return $this */ @@ -21328,7 +21328,7 @@ public function getRsaVeridAccountName() /** * Sets rsa_verid_account_name * - * @param ?string $rsa_verid_account_name + * @param ?string $rsa_verid_account_name * * @return $this */ @@ -21352,7 +21352,7 @@ public function getRsaVeridPassword() /** * Sets rsa_verid_password * - * @param ?string $rsa_verid_password + * @param ?string $rsa_verid_password * * @return $this */ @@ -21376,7 +21376,7 @@ public function getRsaVeridRuleset() /** * Sets rsa_verid_ruleset * - * @param ?string $rsa_verid_ruleset + * @param ?string $rsa_verid_ruleset * * @return $this */ @@ -21400,7 +21400,7 @@ public function getRsaVeridUserId() /** * Sets rsa_verid_user_id * - * @param ?string $rsa_verid_user_id + * @param ?string $rsa_verid_user_id * * @return $this */ @@ -21424,7 +21424,7 @@ public function getSelfSignedRecipientEmailDocument() /** * Sets self_signed_recipient_email_document * - * @param ?string $self_signed_recipient_email_document + * @param ?string $self_signed_recipient_email_document * * @return $this */ @@ -21472,7 +21472,7 @@ public function getSelfSignedRecipientEmailDocumentUserOverride() /** * Sets self_signed_recipient_email_document_user_override * - * @param ?string $self_signed_recipient_email_document_user_override + * @param ?string $self_signed_recipient_email_document_user_override * * @return $this */ @@ -21520,7 +21520,7 @@ public function getSenderCanSignInEachLocation() /** * Sets sender_can_sign_in_each_location * - * @param ?string $sender_can_sign_in_each_location + * @param ?string $sender_can_sign_in_each_location * * @return $this */ @@ -21568,7 +21568,7 @@ public function getSenderMustAuthenticateSigning() /** * Sets sender_must_authenticate_signing * - * @param ?string $sender_must_authenticate_signing + * @param ?string $sender_must_authenticate_signing * * @return $this */ @@ -21616,7 +21616,7 @@ public function getSendingTagsFontColor() /** * Sets sending_tags_font_color * - * @param ?string $sending_tags_font_color + * @param ?string $sending_tags_font_color * * @return $this */ @@ -21664,7 +21664,7 @@ public function getSendingTagsFontName() /** * Sets sending_tags_font_name * - * @param ?string $sending_tags_font_name + * @param ?string $sending_tags_font_name * * @return $this */ @@ -21712,7 +21712,7 @@ public function getSendingTagsFontSize() /** * Sets sending_tags_font_size * - * @param ?string $sending_tags_font_size + * @param ?string $sending_tags_font_size * * @return $this */ @@ -21760,7 +21760,7 @@ public function getSendLockoutRecipientNotification() /** * Sets send_lockout_recipient_notification * - * @param ?string $send_lockout_recipient_notification + * @param ?string $send_lockout_recipient_notification * * @return $this */ @@ -21784,7 +21784,7 @@ public function getSendLockoutRecipientNotificationMetadata() /** * Sets send_lockout_recipient_notification_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $send_lockout_recipient_notification_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $send_lockout_recipient_notification_metadata * * @return $this */ @@ -21808,7 +21808,7 @@ public function getSendToCertifiedDeliveryEnabled() /** * Sets send_to_certified_delivery_enabled * - * @param ?string $send_to_certified_delivery_enabled + * @param ?string $send_to_certified_delivery_enabled * * @return $this */ @@ -21856,7 +21856,7 @@ public function getSessionTimeout() /** * Sets session_timeout * - * @param ?string $session_timeout + * @param ?string $session_timeout * * @return $this */ @@ -21904,7 +21904,7 @@ public function getSetRecipEmailLang() /** * Sets set_recip_email_lang * - * @param ?string $set_recip_email_lang + * @param ?string $set_recip_email_lang * * @return $this */ @@ -21952,7 +21952,7 @@ public function getSetRecipSignLang() /** * Sets set_recip_sign_lang * - * @param ?string $set_recip_sign_lang + * @param ?string $set_recip_sign_lang * * @return $this */ @@ -22000,7 +22000,7 @@ public function getSharedTemplateFolders() /** * Sets shared_template_folders * - * @param ?string $shared_template_folders + * @param ?string $shared_template_folders * * @return $this */ @@ -22048,7 +22048,7 @@ public function getShowCompleteDialogInEmbeddedSession() /** * Sets show_complete_dialog_in_embedded_session * - * @param ?string $show_complete_dialog_in_embedded_session + * @param ?string $show_complete_dialog_in_embedded_session * * @return $this */ @@ -22096,7 +22096,7 @@ public function getShowConditionalRoutingOnSend() /** * Sets show_conditional_routing_on_send * - * @param ?string $show_conditional_routing_on_send + * @param ?string $show_conditional_routing_on_send * * @return $this */ @@ -22120,7 +22120,7 @@ public function getShowConditionalRoutingOnSendMetadata() /** * Sets show_conditional_routing_on_send_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $show_conditional_routing_on_send_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $show_conditional_routing_on_send_metadata * * @return $this */ @@ -22144,7 +22144,7 @@ public function getShowInitialConditionalFields() /** * Sets show_initial_conditional_fields * - * @param ?string $show_initial_conditional_fields + * @param ?string $show_initial_conditional_fields * * @return $this */ @@ -22192,7 +22192,7 @@ public function getShowLocalizedWatermarks() /** * Sets show_localized_watermarks * - * @param ?string $show_localized_watermarks + * @param ?string $show_localized_watermarks * * @return $this */ @@ -22240,7 +22240,7 @@ public function getShowMaskedFieldsWhenDownloadingDocumentAsSender() /** * Sets show_masked_fields_when_downloading_document_as_sender * - * @param ?string $show_masked_fields_when_downloading_document_as_sender + * @param ?string $show_masked_fields_when_downloading_document_as_sender * * @return $this */ @@ -22264,7 +22264,7 @@ public function getShowMaskedFieldsWhenDownloadingDocumentAsSenderMetadata() /** * Sets show_masked_fields_when_downloading_document_as_sender_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $show_masked_fields_when_downloading_document_as_sender_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $show_masked_fields_when_downloading_document_as_sender_metadata * * @return $this */ @@ -22288,7 +22288,7 @@ public function getShowTutorials() /** * Sets show_tutorials * - * @param ?string $show_tutorials + * @param ?string $show_tutorials * * @return $this */ @@ -22336,7 +22336,7 @@ public function getSignatureProviders() /** * Sets signature_providers * - * @param ?string[] $signature_providers + * @param ?string[] $signature_providers * * @return $this */ @@ -22384,7 +22384,7 @@ public function getSignDateFormat() /** * Sets sign_date_format * - * @param ?string $sign_date_format + * @param ?string $sign_date_format * * @return $this */ @@ -22432,7 +22432,7 @@ public function getSignDateTimeAccountLanguageOverride() /** * Sets sign_date_time_account_language_override * - * @param ?string $sign_date_time_account_language_override + * @param ?string $sign_date_time_account_language_override * * @return $this */ @@ -22456,7 +22456,7 @@ public function getSignDateTimeAccountLanguageOverrideMetadata() /** * Sets sign_date_time_account_language_override_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $sign_date_time_account_language_override_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $sign_date_time_account_language_override_metadata * * @return $this */ @@ -22480,7 +22480,7 @@ public function getSignDateTimeAccountTimezoneOverride() /** * Sets sign_date_time_account_timezone_override * - * @param ?string $sign_date_time_account_timezone_override + * @param ?string $sign_date_time_account_timezone_override * * @return $this */ @@ -22504,7 +22504,7 @@ public function getSignDateTimeAccountTimezoneOverrideMetadata() /** * Sets sign_date_time_account_timezone_override_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $sign_date_time_account_timezone_override_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $sign_date_time_account_timezone_override_metadata * * @return $this */ @@ -22528,7 +22528,7 @@ public function getSignerAttachCertificateToEnvelopePdf() /** * Sets signer_attach_certificate_to_envelope_pdf * - * @param ?string $signer_attach_certificate_to_envelope_pdf + * @param ?string $signer_attach_certificate_to_envelope_pdf * * @return $this */ @@ -22576,7 +22576,7 @@ public function getSignerAttachConcat() /** * Sets signer_attach_concat * - * @param ?string $signer_attach_concat + * @param ?string $signer_attach_concat * * @return $this */ @@ -22624,7 +22624,7 @@ public function getSignerCanCreateAccount() /** * Sets signer_can_create_account * - * @param ?string $signer_can_create_account + * @param ?string $signer_can_create_account * * @return $this */ @@ -22672,7 +22672,7 @@ public function getSignerCanSignOnMobile() /** * Sets signer_can_sign_on_mobile * - * @param ?string $signer_can_sign_on_mobile + * @param ?string $signer_can_sign_on_mobile * * @return $this */ @@ -22720,7 +22720,7 @@ public function getSignerInSessionUseEnvelopeCompleteEmail() /** * Sets signer_in_session_use_envelope_complete_email * - * @param ?string $signer_in_session_use_envelope_complete_email + * @param ?string $signer_in_session_use_envelope_complete_email * * @return $this */ @@ -22768,7 +22768,7 @@ public function getSignerLoginRequirements() /** * Sets signer_login_requirements * - * @param ?string $signer_login_requirements + * @param ?string $signer_login_requirements * * @return $this */ @@ -22816,7 +22816,7 @@ public function getSignerMustHaveAccount() /** * Sets signer_must_have_account * - * @param ?string $signer_must_have_account + * @param ?string $signer_must_have_account * * @return $this */ @@ -22864,7 +22864,7 @@ public function getSignerMustLoginToSign() /** * Sets signer_must_login_to_sign * - * @param ?string $signer_must_login_to_sign + * @param ?string $signer_must_login_to_sign * * @return $this */ @@ -22912,7 +22912,7 @@ public function getSignerShowSecureFieldInitialValues() /** * Sets signer_show_secure_field_initial_values * - * @param ?string $signer_show_secure_field_initial_values + * @param ?string $signer_show_secure_field_initial_values * * @return $this */ @@ -22960,7 +22960,7 @@ public function getSigningSessionTimeout() /** * Sets signing_session_timeout * - * @param ?string $signing_session_timeout + * @param ?string $signing_session_timeout * * @return $this */ @@ -23008,7 +23008,7 @@ public function getSigningUiVersion() /** * Sets signing_ui_version * - * @param ?string $signing_ui_version + * @param ?string $signing_ui_version * * @return $this */ @@ -23056,7 +23056,7 @@ public function getSignTimeFormat() /** * Sets sign_time_format * - * @param ?string $sign_time_format + * @param ?string $sign_time_format * * @return $this */ @@ -23104,7 +23104,7 @@ public function getSignTimeShowAmPm() /** * Sets sign_time_show_am_pm * - * @param ?string $sign_time_show_am_pm + * @param ?string $sign_time_show_am_pm * * @return $this */ @@ -23152,7 +23152,7 @@ public function getSimplifiedSendingEnabled() /** * Sets simplified_sending_enabled * - * @param ?string $simplified_sending_enabled + * @param ?string $simplified_sending_enabled * * @return $this */ @@ -23200,7 +23200,7 @@ public function getSingleSignOnEnabled() /** * Sets single_sign_on_enabled * - * @param ?string $single_sign_on_enabled + * @param ?string $single_sign_on_enabled * * @return $this */ @@ -23248,7 +23248,7 @@ public function getSkipAuthCompletedEnvelopes() /** * Sets skip_auth_completed_envelopes * - * @param ?string $skip_auth_completed_envelopes + * @param ?string $skip_auth_completed_envelopes * * @return $this */ @@ -23296,7 +23296,7 @@ public function getSocialIdRecipAuth() /** * Sets social_id_recip_auth * - * @param ?string $social_id_recip_auth + * @param ?string $social_id_recip_auth * * @return $this */ @@ -23344,7 +23344,7 @@ public function getSpecifyDocumentVisibility() /** * Sets specify_document_visibility * - * @param ?string $specify_document_visibility + * @param ?string $specify_document_visibility * * @return $this */ @@ -23392,7 +23392,7 @@ public function getStartInAdvancedCorrect() /** * Sets start_in_advanced_correct * - * @param ?string $start_in_advanced_correct + * @param ?string $start_in_advanced_correct * * @return $this */ @@ -23440,7 +23440,7 @@ public function getSupplementalDocumentsMustAccept() /** * Sets supplemental_documents_must_accept * - * @param ?string $supplemental_documents_must_accept + * @param ?string $supplemental_documents_must_accept * * @return $this */ @@ -23488,7 +23488,7 @@ public function getSupplementalDocumentsMustRead() /** * Sets supplemental_documents_must_read * - * @param ?string $supplemental_documents_must_read + * @param ?string $supplemental_documents_must_read * * @return $this */ @@ -23536,7 +23536,7 @@ public function getSupplementalDocumentsMustView() /** * Sets supplemental_documents_must_view * - * @param ?string $supplemental_documents_must_view + * @param ?string $supplemental_documents_must_view * * @return $this */ @@ -23584,7 +23584,7 @@ public function getSuppressCertificateEnforcement() /** * Sets suppress_certificate_enforcement * - * @param ?string $suppress_certificate_enforcement + * @param ?string $suppress_certificate_enforcement * * @return $this */ @@ -23656,7 +23656,7 @@ public function getTimezoneOffsetApi() /** * Sets timezone_offset_api * - * @param ?string $timezone_offset_api + * @param ?string $timezone_offset_api * * @return $this */ @@ -23704,7 +23704,7 @@ public function getTimezoneOffsetUi() /** * Sets timezone_offset_ui * - * @param ?string $timezone_offset_ui + * @param ?string $timezone_offset_ui * * @return $this */ @@ -23752,7 +23752,7 @@ public function getUniversalSignatureOptIn() /** * Sets universal_signature_opt_in * - * @param ?string $universal_signature_opt_in + * @param ?string $universal_signature_opt_in * * @return $this */ @@ -23776,7 +23776,7 @@ public function getUniversalSignatureSkipPlatformSignature() /** * Sets universal_signature_skip_platform_signature * - * @param ?string $universal_signature_skip_platform_signature + * @param ?string $universal_signature_skip_platform_signature * * @return $this */ @@ -23800,7 +23800,7 @@ public function getUniversalSignatureSkipPlatformSignatureMetadata() /** * Sets universal_signature_skip_platform_signature_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $universal_signature_skip_platform_signature_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $universal_signature_skip_platform_signature_metadata * * @return $this */ @@ -23824,7 +23824,7 @@ public function getUseAccountLevelEmail() /** * Sets use_account_level_email * - * @param ?string $use_account_level_email + * @param ?string $use_account_level_email * * @return $this */ @@ -23872,7 +23872,7 @@ public function getUseConsumerDisclosure() /** * Sets use_consumer_disclosure * - * @param ?string $use_consumer_disclosure + * @param ?string $use_consumer_disclosure * * @return $this */ @@ -23920,7 +23920,7 @@ public function getUseConsumerDisclosureWithinAccount() /** * Sets use_consumer_disclosure_within_account * - * @param ?string $use_consumer_disclosure_within_account + * @param ?string $use_consumer_disclosure_within_account * * @return $this */ @@ -23968,7 +23968,7 @@ public function getUseDerivedKeys() /** * Sets use_derived_keys * - * @param ?string $use_derived_keys + * @param ?string $use_derived_keys * * @return $this */ @@ -24016,7 +24016,7 @@ public function getUseDocuSignExpressSignerCertificate() /** * Sets use_docu_sign_express_signer_certificate * - * @param ?string $use_docu_sign_express_signer_certificate + * @param ?string $use_docu_sign_express_signer_certificate * * @return $this */ @@ -24064,7 +24064,7 @@ public function getUseEnvelopeSearchMixedMode() /** * Sets use_envelope_search_mixed_mode * - * @param ?string $use_envelope_search_mixed_mode + * @param ?string $use_envelope_search_mixed_mode * * @return $this */ @@ -24088,7 +24088,7 @@ public function getUseEnvelopeSearchMixedModeMetadata() /** * Sets use_envelope_search_mixed_mode_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $use_envelope_search_mixed_mode_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $use_envelope_search_mixed_mode_metadata * * @return $this */ @@ -24112,7 +24112,7 @@ public function getUseMultiAppGroupsData() /** * Sets use_multi_app_groups_data * - * @param ?string $use_multi_app_groups_data + * @param ?string $use_multi_app_groups_data * * @return $this */ @@ -24136,7 +24136,7 @@ public function getUseMultiAppGroupsDataMetadata() /** * Sets use_multi_app_groups_data_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $use_multi_app_groups_data_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $use_multi_app_groups_data_metadata * * @return $this */ @@ -24160,7 +24160,7 @@ public function getUseNewBlobForPdf() /** * Sets use_new_blob_for_pdf * - * @param ?string $use_new_blob_for_pdf + * @param ?string $use_new_blob_for_pdf * * @return $this */ @@ -24208,7 +24208,7 @@ public function getUseNewEnvelopeSearch() /** * Sets use_new_envelope_search * - * @param ?string $use_new_envelope_search + * @param ?string $use_new_envelope_search * * @return $this */ @@ -24232,7 +24232,7 @@ public function getUseNewEnvelopeSearchMetadata() /** * Sets use_new_envelope_search_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_metadata * * @return $this */ @@ -24256,7 +24256,7 @@ public function getUseNewEnvelopeSearchOnlyWhenSearchingAfterDate() /** * Sets use_new_envelope_search_only_when_searching_after_date * - * @param ?string $use_new_envelope_search_only_when_searching_after_date + * @param ?string $use_new_envelope_search_only_when_searching_after_date * * @return $this */ @@ -24280,7 +24280,7 @@ public function getUseNewEnvelopeSearchOnlyWhenSearchingAfterDateMetadata() /** * Sets use_new_envelope_search_only_when_searching_after_date_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_only_when_searching_after_date_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_only_when_searching_after_date_metadata * * @return $this */ @@ -24304,7 +24304,7 @@ public function getUseNewEnvelopeSearchOnlyWithSearchTerm() /** * Sets use_new_envelope_search_only_with_search_term * - * @param ?string $use_new_envelope_search_only_with_search_term + * @param ?string $use_new_envelope_search_only_with_search_term * * @return $this */ @@ -24328,7 +24328,7 @@ public function getUseNewEnvelopeSearchOnlyWithSearchTermMetadata() /** * Sets use_new_envelope_search_only_with_search_term_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_only_with_search_term_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $use_new_envelope_search_only_with_search_term_metadata * * @return $this */ @@ -24352,7 +24352,7 @@ public function getUseSafeSignerCertificates() /** * Sets use_safe_signer_certificates * - * @param ?string $use_safe_signer_certificates + * @param ?string $use_safe_signer_certificates * * @return $this */ @@ -24400,7 +24400,7 @@ public function getUsesApi() /** * Sets uses_api * - * @param ?string $uses_api + * @param ?string $uses_api * * @return $this */ @@ -24448,7 +24448,7 @@ public function getUseSignatureProviderPlatform() /** * Sets use_signature_provider_platform * - * @param ?string $use_signature_provider_platform + * @param ?string $use_signature_provider_platform * * @return $this */ @@ -24496,7 +24496,7 @@ public function getUseSmartContractsV1() /** * Sets use_smart_contracts_v1 * - * @param ?string $use_smart_contracts_v1 + * @param ?string $use_smart_contracts_v1 * * @return $this */ @@ -24520,7 +24520,7 @@ public function getValidationsAllowed() /** * Sets validations_allowed * - * @param ?string $validations_allowed + * @param ?string $validations_allowed * * @return $this */ @@ -24568,7 +24568,7 @@ public function getValidationsBrand() /** * Sets validations_brand * - * @param ?string $validations_brand + * @param ?string $validations_brand * * @return $this */ @@ -24616,7 +24616,7 @@ public function getValidationsCadence() /** * Sets validations_cadence * - * @param ?string $validations_cadence + * @param ?string $validations_cadence * * @return $this */ @@ -24664,7 +24664,7 @@ public function getValidationsEnabled() /** * Sets validations_enabled * - * @param ?string $validations_enabled + * @param ?string $validations_enabled * * @return $this */ @@ -24712,7 +24712,7 @@ public function getValidationsReport() /** * Sets validations_report * - * @param ?string $validations_report + * @param ?string $validations_report * * @return $this */ @@ -24760,7 +24760,7 @@ public function getWaterMarkEnabled() /** * Sets water_mark_enabled * - * @param ?string $water_mark_enabled + * @param ?string $water_mark_enabled * * @return $this */ @@ -24808,7 +24808,7 @@ public function getWriteReminderToEnvelopeHistory() /** * Sets write_reminder_to_envelope_history * - * @param ?string $write_reminder_to_envelope_history + * @param ?string $write_reminder_to_envelope_history * * @return $this */ @@ -24856,7 +24856,7 @@ public function getWurflMinAllowableScreenSize() /** * Sets wurfl_min_allowable_screen_size * - * @param ?string $wurfl_min_allowable_screen_size + * @param ?string $wurfl_min_allowable_screen_size * * @return $this */ diff --git a/src/Model/AccountSharedAccess.php b/src/Model/AccountSharedAccess.php index 8697b174..9c6007f8 100644 --- a/src/Model/AccountSharedAccess.php +++ b/src/Model/AccountSharedAccess.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; diff --git a/src/Model/AccountSignature.php b/src/Model/AccountSignature.php index ba52a0bd..a90ab287 100644 --- a/src/Model/AccountSignature.php +++ b/src/Model/AccountSignature.php @@ -315,9 +315,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -332,7 +332,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['adopted_date_time'] = isset($data['adopted_date_time']) ? $data['adopted_date_time'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -405,7 +405,7 @@ public function getAdoptedDateTime() /** * Sets adopted_date_time * - * @param ?string $adopted_date_time + * @param ?string $adopted_date_time * * @return $this */ @@ -453,7 +453,7 @@ public function getCustomField() /** * Sets custom_field * - * @param ?string $custom_field + * @param ?string $custom_field * * @return $this */ @@ -501,7 +501,7 @@ public function getDisallowUserResizeStamp() /** * Sets disallow_user_resize_stamp * - * @param ?string $disallow_user_resize_stamp + * @param ?string $disallow_user_resize_stamp * * @return $this */ @@ -549,7 +549,7 @@ public function getExternalId() /** * Sets external_id * - * @param ?string $external_id + * @param ?string $external_id * * @return $this */ @@ -573,7 +573,7 @@ public function getImageBase64() /** * Sets image_base64 * - * @param ?string $image_base64 + * @param ?string $image_base64 * * @return $this */ @@ -597,7 +597,7 @@ public function getImageType() /** * Sets image_type * - * @param ?string $image_type + * @param ?string $image_type * * @return $this */ @@ -621,7 +621,7 @@ public function getInitials150ImageId() /** * Sets initials150_image_id * - * @param ?string $initials150_image_id + * @param ?string $initials150_image_id * * @return $this */ @@ -669,7 +669,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -717,7 +717,7 @@ public function getNrdsId() /** * Sets nrds_id * - * @param ?string $nrds_id + * @param ?string $nrds_id * * @return $this */ @@ -741,7 +741,7 @@ public function getNrdsLastName() /** * Sets nrds_last_name * - * @param ?string $nrds_last_name + * @param ?string $nrds_last_name * * @return $this */ @@ -765,7 +765,7 @@ public function getNrdsStatus() /** * Sets nrds_status * - * @param ?string $nrds_status + * @param ?string $nrds_status * * @return $this */ @@ -789,7 +789,7 @@ public function getPhoneticName() /** * Sets phonetic_name * - * @param ?string $phonetic_name + * @param ?string $phonetic_name * * @return $this */ @@ -813,7 +813,7 @@ public function getSignature150ImageId() /** * Sets signature150_image_id * - * @param ?string $signature150_image_id + * @param ?string $signature150_image_id * * @return $this */ @@ -837,7 +837,7 @@ public function getSignatureFont() /** * Sets signature_font * - * @param ?string $signature_font + * @param ?string $signature_font * * @return $this */ @@ -861,7 +861,7 @@ public function getSignatureGroups() /** * Sets signature_groups * - * @param \DocuSign\eSign\Model\SignatureGroup[] $signature_groups + * @param \DocuSign\eSign\Model\SignatureGroup[] $signature_groups * * @return $this */ @@ -933,7 +933,7 @@ public function getSignatureInitials() /** * Sets signature_initials * - * @param ?string $signature_initials + * @param ?string $signature_initials * * @return $this */ @@ -981,7 +981,7 @@ public function getSignatureRights() /** * Sets signature_rights * - * @param ?string $signature_rights + * @param ?string $signature_rights * * @return $this */ @@ -1005,7 +1005,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -1029,7 +1029,7 @@ public function getSignatureUsers() /** * Sets signature_users * - * @param \DocuSign\eSign\Model\SignatureUser[] $signature_users + * @param \DocuSign\eSign\Model\SignatureUser[] $signature_users * * @return $this */ @@ -1053,7 +1053,7 @@ public function getStampFormat() /** * Sets stamp_format * - * @param ?string $stamp_format + * @param ?string $stamp_format * * @return $this */ @@ -1077,7 +1077,7 @@ public function getStampImageUri() /** * Sets stamp_image_uri * - * @param ?string $stamp_image_uri + * @param ?string $stamp_image_uri * * @return $this */ @@ -1101,7 +1101,7 @@ public function getStampSizeMm() /** * Sets stamp_size_mm * - * @param ?string $stamp_size_mm + * @param ?string $stamp_size_mm * * @return $this */ @@ -1125,7 +1125,7 @@ public function getStampType() /** * Sets stamp_type * - * @param ?string $stamp_type + * @param ?string $stamp_type * * @return $this */ diff --git a/src/Model/AccountSignatureDefinition.php b/src/Model/AccountSignatureDefinition.php index d75969d1..9cbbbe14 100644 --- a/src/Model/AccountSignatureDefinition.php +++ b/src/Model/AccountSignatureDefinition.php @@ -240,9 +240,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -257,7 +257,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date_stamp_properties'] = isset($data['date_stamp_properties']) ? $data['date_stamp_properties'] : null; $this->container['disallow_user_resize_stamp'] = isset($data['disallow_user_resize_stamp']) ? $data['disallow_user_resize_stamp'] : null; @@ -339,7 +339,7 @@ public function getDisallowUserResizeStamp() /** * Sets disallow_user_resize_stamp * - * @param ?string $disallow_user_resize_stamp + * @param ?string $disallow_user_resize_stamp * * @return $this */ @@ -363,7 +363,7 @@ public function getExternalId() /** * Sets external_id * - * @param ?string $external_id + * @param ?string $external_id * * @return $this */ @@ -387,7 +387,7 @@ public function getImageType() /** * Sets image_type * - * @param ?string $image_type + * @param ?string $image_type * * @return $this */ @@ -411,7 +411,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -435,7 +435,7 @@ public function getNrdsId() /** * Sets nrds_id * - * @param ?string $nrds_id + * @param ?string $nrds_id * * @return $this */ @@ -459,7 +459,7 @@ public function getNrdsLastName() /** * Sets nrds_last_name * - * @param ?string $nrds_last_name + * @param ?string $nrds_last_name * * @return $this */ @@ -483,7 +483,7 @@ public function getPhoneticName() /** * Sets phonetic_name * - * @param ?string $phonetic_name + * @param ?string $phonetic_name * * @return $this */ @@ -507,7 +507,7 @@ public function getSignatureFont() /** * Sets signature_font * - * @param ?string $signature_font + * @param ?string $signature_font * * @return $this */ @@ -531,7 +531,7 @@ public function getSignatureGroups() /** * Sets signature_groups * - * @param \DocuSign\eSign\Model\SignatureGroupDef[] $signature_groups + * @param \DocuSign\eSign\Model\SignatureGroupDef[] $signature_groups * * @return $this */ @@ -579,7 +579,7 @@ public function getSignatureInitials() /** * Sets signature_initials * - * @param ?string $signature_initials + * @param ?string $signature_initials * * @return $this */ @@ -627,7 +627,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -651,7 +651,7 @@ public function getSignatureUsers() /** * Sets signature_users * - * @param \DocuSign\eSign\Model\SignatureUserDef[] $signature_users + * @param \DocuSign\eSign\Model\SignatureUserDef[] $signature_users * * @return $this */ @@ -675,7 +675,7 @@ public function getStampFormat() /** * Sets stamp_format * - * @param ?string $stamp_format + * @param ?string $stamp_format * * @return $this */ @@ -699,7 +699,7 @@ public function getStampSizeMm() /** * Sets stamp_size_mm * - * @param ?string $stamp_size_mm + * @param ?string $stamp_size_mm * * @return $this */ diff --git a/src/Model/AccountSignatureProvider.php b/src/Model/AccountSignatureProvider.php index a85d7592..38302bca 100644 --- a/src/Model/AccountSignatureProvider.php +++ b/src/Model/AccountSignatureProvider.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_required'] = isset($data['is_required']) ? $data['is_required'] : null; $this->container['priority'] = isset($data['priority']) ? $data['priority'] : null; @@ -256,7 +256,7 @@ public function getIsRequired() /** * Sets is_required * - * @param ?string $is_required + * @param ?string $is_required * * @return $this */ @@ -280,7 +280,7 @@ public function getPriority() /** * Sets priority * - * @param ?string $priority + * @param ?string $priority * * @return $this */ @@ -304,7 +304,7 @@ public function getSignatureProviderDisplayName() /** * Sets signature_provider_display_name * - * @param ?string $signature_provider_display_name + * @param ?string $signature_provider_display_name * * @return $this */ @@ -328,7 +328,7 @@ public function getSignatureProviderId() /** * Sets signature_provider_id * - * @param ?string $signature_provider_id + * @param ?string $signature_provider_id * * @return $this */ @@ -352,7 +352,7 @@ public function getSignatureProviderName() /** * Sets signature_provider_name * - * @param ?string $signature_provider_name + * @param ?string $signature_provider_name * * @return $this */ @@ -376,7 +376,7 @@ public function getSignatureProviderOptionsMetadata() /** * Sets signature_provider_options_metadata * - * @param \DocuSign\eSign\Model\AccountSignatureProviderOption[] $signature_provider_options_metadata + * @param \DocuSign\eSign\Model\AccountSignatureProviderOption[] $signature_provider_options_metadata * * @return $this */ @@ -400,7 +400,7 @@ public function getSignatureProviderRequiredOptions() /** * Sets signature_provider_required_options * - * @param \DocuSign\eSign\Model\SignatureProviderRequiredOption[] $signature_provider_required_options + * @param \DocuSign\eSign\Model\SignatureProviderRequiredOption[] $signature_provider_required_options * * @return $this */ diff --git a/src/Model/AccountSignatureProviderOption.php b/src/Model/AccountSignatureProviderOption.php index 649a0680..dac0894e 100644 --- a/src/Model/AccountSignatureProviderOption.php +++ b/src/Model/AccountSignatureProviderOption.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['signature_provider_option_display_name'] = isset($data['signature_provider_option_display_name']) ? $data['signature_provider_option_display_name'] : null; $this->container['signature_provider_option_id'] = isset($data['signature_provider_option_id']) ? $data['signature_provider_option_id'] : null; @@ -232,7 +232,7 @@ public function getSignatureProviderOptionDisplayName() /** * Sets signature_provider_option_display_name * - * @param ?string $signature_provider_option_display_name + * @param ?string $signature_provider_option_display_name * * @return $this */ @@ -256,7 +256,7 @@ public function getSignatureProviderOptionId() /** * Sets signature_provider_option_id * - * @param ?string $signature_provider_option_id + * @param ?string $signature_provider_option_id * * @return $this */ @@ -280,7 +280,7 @@ public function getSignatureProviderOptionName() /** * Sets signature_provider_option_name * - * @param ?string $signature_provider_option_name + * @param ?string $signature_provider_option_name * * @return $this */ diff --git a/src/Model/AccountSignatureProviders.php b/src/Model/AccountSignatureProviders.php index b9606961..a657ee21 100644 --- a/src/Model/AccountSignatureProviders.php +++ b/src/Model/AccountSignatureProviders.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['signature_providers'] = isset($data['signature_providers']) ? $data['signature_providers'] : null; } @@ -219,7 +219,7 @@ public function getSignatureProviders() /** * Sets signature_providers * - * @param \DocuSign\eSign\Model\AccountSignatureProvider[] $signature_providers + * @param \DocuSign\eSign\Model\AccountSignatureProvider[] $signature_providers * * @return $this */ diff --git a/src/Model/AccountSignaturesInformation.php b/src/Model/AccountSignaturesInformation.php index 3d284563..9126efc7 100644 --- a/src/Model/AccountSignaturesInformation.php +++ b/src/Model/AccountSignaturesInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_signatures'] = isset($data['account_signatures']) ? $data['account_signatures'] : null; } @@ -219,7 +219,7 @@ public function getAccountSignatures() /** * Sets account_signatures * - * @param \DocuSign\eSign\Model\AccountSignature[] $account_signatures + * @param \DocuSign\eSign\Model\AccountSignature[] $account_signatures * * @return $this */ diff --git a/src/Model/AccountUISettings.php b/src/Model/AccountUISettings.php index af62d6b9..521fd96f 100644 --- a/src/Model/AccountUISettings.php +++ b/src/Model/AccountUISettings.php @@ -353,7 +353,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['admin_message'] = isset($data['admin_message']) ? $data['admin_message'] : null; $this->container['allow_users_to_edit_shared_access'] = isset($data['allow_users_to_edit_shared_access']) ? $data['allow_users_to_edit_shared_access'] : null; diff --git a/src/Model/AddOn.php b/src/Model/AddOn.php index a0ae1d6c..5003352b 100644 --- a/src/Model/AddOn.php +++ b/src/Model/AddOn.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active'] = isset($data['active']) ? $data['active'] : null; $this->container['add_on_id'] = isset($data['add_on_id']) ? $data['add_on_id'] : null; @@ -286,7 +286,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ diff --git a/src/Model/AddressInformation.php b/src/Model/AddressInformation.php index bd77de27..4b8d4883 100644 --- a/src/Model/AddressInformation.php +++ b/src/Model/AddressInformation.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address1'] = isset($data['address1']) ? $data['address1'] : null; $this->container['address2'] = isset($data['address2']) ? $data['address2'] : null; @@ -412,7 +412,7 @@ public function getPostalCode() /** * Sets postal_code * - * @param ?string $postal_code + * @param ?string $postal_code * * @return $this */ @@ -436,7 +436,7 @@ public function getStateOrProvince() /** * Sets state_or_province * - * @param ?string $state_or_province + * @param ?string $state_or_province * * @return $this */ @@ -460,7 +460,7 @@ public function getZipPlus4() /** * Sets zip_plus4 * - * @param ?string $zip_plus4 + * @param ?string $zip_plus4 * * @return $this */ diff --git a/src/Model/AddressInformationInput.php b/src/Model/AddressInformationInput.php index 4b374950..4f6d8498 100644 --- a/src/Model/AddressInformationInput.php +++ b/src/Model/AddressInformationInput.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address_information'] = isset($data['address_information']) ? $data['address_information'] : null; $this->container['display_level_code'] = isset($data['display_level_code']) ? $data['display_level_code'] : null; diff --git a/src/Model/AddressInformationV2.php b/src/Model/AddressInformationV2.php index e086a3a1..8a7289e1 100644 --- a/src/Model/AddressInformationV2.php +++ b/src/Model/AddressInformationV2.php @@ -131,9 +131,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -145,7 +145,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address1'] = isset($data['address1']) ? $data['address1'] : null; $this->container['address2'] = isset($data['address2']) ? $data['address2'] : null; @@ -233,7 +233,7 @@ public function getCity() /** * Sets city - * @param string $city + * @param string $city * @return $this */ public function setCity($city) @@ -275,7 +275,7 @@ public function getFax() /** * Sets fax - * @param string $fax + * @param string $fax * @return $this */ public function setFax($fax) @@ -296,7 +296,7 @@ public function getPhone() /** * Sets phone - * @param string $phone + * @param string $phone * @return $this */ public function setPhone($phone) @@ -317,7 +317,7 @@ public function getPostalCode() /** * Sets postal_code - * @param string $postal_code + * @param string $postal_code * @return $this */ public function setPostalCode($postal_code) diff --git a/src/Model/AdminMessage.php b/src/Model/AdminMessage.php index 7231108e..c1ce37c1 100644 --- a/src/Model/AdminMessage.php +++ b/src/Model/AdminMessage.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['base_message'] = isset($data['base_message']) ? $data['base_message'] : null; $this->container['more_information'] = isset($data['more_information']) ? $data['more_information'] : null; @@ -225,7 +225,7 @@ public function getBaseMessage() /** * Sets base_message * - * @param ?string $base_message + * @param ?string $base_message * * @return $this */ @@ -249,7 +249,7 @@ public function getMoreInformation() /** * Sets more_information * - * @param ?string $more_information + * @param ?string $more_information * * @return $this */ diff --git a/src/Model/Agent.php b/src/Model/Agent.php index b573bf84..b422a925 100644 --- a/src/Model/Agent.php +++ b/src/Model/Agent.php @@ -541,9 +541,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -558,7 +558,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -748,7 +748,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -772,7 +772,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -796,7 +796,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -820,7 +820,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -868,7 +868,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -892,7 +892,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1060,7 +1060,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1084,7 +1084,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1108,7 +1108,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1132,7 +1132,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1228,7 +1228,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1420,7 +1420,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1588,7 +1588,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -1636,7 +1636,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1660,7 +1660,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1684,7 +1684,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1828,7 +1828,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -1900,7 +1900,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -1948,7 +1948,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1972,7 +1972,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2356,7 +2356,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2380,7 +2380,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2452,7 +2452,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2476,7 +2476,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2500,7 +2500,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/ApiRequestLog.php b/src/Model/ApiRequestLog.php index 60dc5994..30613221 100644 --- a/src/Model/ApiRequestLog.php +++ b/src/Model/ApiRequestLog.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -262,7 +262,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -286,7 +286,7 @@ public function getRequestLogId() /** * Sets request_log_id * - * @param ?string $request_log_id + * @param ?string $request_log_id * * @return $this */ diff --git a/src/Model/ApiRequestLogsResult.php b/src/Model/ApiRequestLogsResult.php index da18b8ea..58c9f278 100644 --- a/src/Model/ApiRequestLogsResult.php +++ b/src/Model/ApiRequestLogsResult.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_request_logs'] = isset($data['api_request_logs']) ? $data['api_request_logs'] : null; } diff --git a/src/Model/AppStoreProduct.php b/src/Model/AppStoreProduct.php index 9284aaa6..c53bdd8e 100644 --- a/src/Model/AppStoreProduct.php +++ b/src/Model/AppStoreProduct.php @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['market_place'] = isset($data['market_place']) ? $data['market_place'] : null; $this->container['product_id'] = isset($data['product_id']) ? $data['product_id'] : null; diff --git a/src/Model/AppStoreReceipt.php b/src/Model/AppStoreReceipt.php index 3506a93c..9bfe3232 100644 --- a/src/Model/AppStoreReceipt.php +++ b/src/Model/AppStoreReceipt.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['downgrade_product_id'] = isset($data['downgrade_product_id']) ? $data['downgrade_product_id'] : null; $this->container['is_downgrade_cancellation'] = isset($data['is_downgrade_cancellation']) ? $data['is_downgrade_cancellation'] : null; @@ -238,7 +238,7 @@ public function getDowngradeProductId() /** * Sets downgrade_product_id * - * @param ?string $downgrade_product_id + * @param ?string $downgrade_product_id * * @return $this */ @@ -262,7 +262,7 @@ public function getIsDowngradeCancellation() /** * Sets is_downgrade_cancellation * - * @param ?string $is_downgrade_cancellation + * @param ?string $is_downgrade_cancellation * * @return $this */ @@ -286,7 +286,7 @@ public function getProductId() /** * Sets product_id * - * @param ?string $product_id + * @param ?string $product_id * * @return $this */ diff --git a/src/Model/Approve.php b/src/Model/Approve.php index 0e6241d1..7e8371ae 100644 --- a/src/Model/Approve.php +++ b/src/Model/Approve.php @@ -626,9 +626,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -643,7 +643,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -778,7 +778,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -802,7 +802,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -826,7 +826,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1114,7 +1114,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1402,7 +1402,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1426,7 +1426,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1546,7 +1546,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1690,7 +1690,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1858,7 +1858,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1906,7 +1906,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1954,7 +1954,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2146,7 +2146,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2242,7 +2242,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2338,7 +2338,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2410,7 +2410,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2434,7 +2434,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2578,7 +2578,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2626,7 +2626,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2770,7 +2770,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2866,7 +2866,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/AskAnAdmin.php b/src/Model/AskAnAdmin.php index 1264764e..8e6920ab 100644 --- a/src/Model/AskAnAdmin.php +++ b/src/Model/AskAnAdmin.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['message'] = isset($data['message']) ? $data['message'] : null; diff --git a/src/Model/Attachment.php b/src/Model/Attachment.php index ee82cd9d..94ecaaf2 100644 --- a/src/Model/Attachment.php +++ b/src/Model/Attachment.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_control'] = isset($data['access_control']) ? $data['access_control'] : null; $this->container['attachment_id'] = isset($data['attachment_id']) ? $data['attachment_id'] : null; @@ -256,7 +256,7 @@ public function getAccessControl() /** * Sets access_control * - * @param ?string $access_control + * @param ?string $access_control * * @return $this */ @@ -280,7 +280,7 @@ public function getAttachmentId() /** * Sets attachment_id * - * @param ?string $attachment_id + * @param ?string $attachment_id * * @return $this */ @@ -328,7 +328,7 @@ public function getData() /** * Sets data * - * @param ?string $data + * @param ?string $data * * @return $this */ @@ -352,7 +352,7 @@ public function getLabel() /** * Sets label * - * @param ?string $label + * @param ?string $label * * @return $this */ @@ -376,7 +376,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -400,7 +400,7 @@ public function getRemoteUrl() /** * Sets remote_url * - * @param ?string $remote_url + * @param ?string $remote_url * * @return $this */ diff --git a/src/Model/AuthenticationMethod.php b/src/Model/AuthenticationMethod.php index 002a9e1c..f210fd41 100644 --- a/src/Model/AuthenticationMethod.php +++ b/src/Model/AuthenticationMethod.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_type'] = isset($data['authentication_type']) ? $data['authentication_type'] : null; $this->container['last_provider'] = isset($data['last_provider']) ? $data['last_provider'] : null; diff --git a/src/Model/AuthenticationStatus.php b/src/Model/AuthenticationStatus.php index e61cf1a0..03373a11 100644 --- a/src/Model/AuthenticationStatus.php +++ b/src/Model/AuthenticationStatus.php @@ -251,9 +251,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -268,7 +268,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code_result'] = isset($data['access_code_result']) ? $data['access_code_result'] : null; $this->container['age_verify_result'] = isset($data['age_verify_result']) ? $data['age_verify_result'] : null; diff --git a/src/Model/AuthorizationUser.php b/src/Model/AuthorizationUser.php index 40cbe4a9..f043804f 100644 --- a/src/Model/AuthorizationUser.php +++ b/src/Model/AuthorizationUser.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; diff --git a/src/Model/BccEmailAddress.php b/src/Model/BccEmailAddress.php index c53ffc1a..5a4bcdc0 100644 --- a/src/Model/BccEmailAddress.php +++ b/src/Model/BccEmailAddress.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bcc_email_address_id'] = isset($data['bcc_email_address_id']) ? $data['bcc_email_address_id'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; diff --git a/src/Model/BccEmailArchive.php b/src/Model/BccEmailArchive.php index e8233bbb..10c6cb7e 100644 --- a/src/Model/BccEmailArchive.php +++ b/src/Model/BccEmailArchive.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['bcc_email_archive_id'] = isset($data['bcc_email_archive_id']) ? $data['bcc_email_archive_id'] : null; @@ -298,7 +298,7 @@ public function getBccEmailArchiveId() /** * Sets bcc_email_archive_id * - * @param ?string $bcc_email_archive_id + * @param ?string $bcc_email_archive_id * * @return $this */ @@ -322,7 +322,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ @@ -370,7 +370,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -394,7 +394,7 @@ public function getEmailNotificationId() /** * Sets email_notification_id * - * @param ?string $email_notification_id + * @param ?string $email_notification_id * * @return $this */ @@ -418,7 +418,7 @@ public function getModified() /** * Sets modified * - * @param ?string $modified + * @param ?string $modified * * @return $this */ @@ -490,7 +490,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/BccEmailArchiveHistory.php b/src/Model/BccEmailArchiveHistory.php index 10036f1c..7f93579d 100644 --- a/src/Model/BccEmailArchiveHistory.php +++ b/src/Model/BccEmailArchiveHistory.php @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['action'] = isset($data['action']) ? $data['action'] : null; diff --git a/src/Model/BccEmailArchiveHistoryList.php b/src/Model/BccEmailArchiveHistoryList.php index 37e8dfe2..bc94315b 100644 --- a/src/Model/BccEmailArchiveHistoryList.php +++ b/src/Model/BccEmailArchiveHistoryList.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bcc_email_archive_history'] = isset($data['bcc_email_archive_history']) ? $data['bcc_email_archive_history'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -255,7 +255,7 @@ public function getBccEmailArchiveHistory() /** * Sets bcc_email_archive_history * - * @param \DocuSign\eSign\Model\BccEmailArchiveHistory[] $bcc_email_archive_history + * @param \DocuSign\eSign\Model\BccEmailArchiveHistory[] $bcc_email_archive_history * * @return $this */ diff --git a/src/Model/BccEmailArchiveList.php b/src/Model/BccEmailArchiveList.php index 092845f4..d6ef10b5 100644 --- a/src/Model/BccEmailArchiveList.php +++ b/src/Model/BccEmailArchiveList.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bcc_email_archives'] = isset($data['bcc_email_archives']) ? $data['bcc_email_archives'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -256,7 +256,7 @@ public function getBccEmailArchives() /** * Sets bcc_email_archives * - * @param \DocuSign\eSign\Model\BccEmailArchive[] $bcc_email_archives + * @param \DocuSign\eSign\Model\BccEmailArchive[] $bcc_email_archives * * @return $this */ diff --git a/src/Model/BillingCharge.php b/src/Model/BillingCharge.php index a1b1d75b..7619bba6 100644 --- a/src/Model/BillingCharge.php +++ b/src/Model/BillingCharge.php @@ -221,9 +221,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -238,7 +238,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allowed_quantity'] = isset($data['allowed_quantity']) ? $data['allowed_quantity'] : null; $this->container['blocked'] = isset($data['blocked']) ? $data['blocked'] : null; @@ -412,7 +412,7 @@ public function getDiscounts() /** * Sets discounts * - * @param \DocuSign\eSign\Model\BillingDiscount[] $discounts + * @param \DocuSign\eSign\Model\BillingDiscount[] $discounts * * @return $this */ @@ -436,7 +436,7 @@ public function getFirstEffectiveDate() /** * Sets first_effective_date * - * @param ?string $first_effective_date + * @param ?string $first_effective_date * * @return $this */ @@ -460,7 +460,7 @@ public function getIncludedQuantity() /** * Sets included_quantity * - * @param ?string $included_quantity + * @param ?string $included_quantity * * @return $this */ @@ -508,7 +508,7 @@ public function getLastEffectiveDate() /** * Sets last_effective_date * - * @param ?string $last_effective_date + * @param ?string $last_effective_date * * @return $this */ @@ -532,7 +532,7 @@ public function getPrices() /** * Sets prices * - * @param \DocuSign\eSign\Model\BillingPrice[] $prices + * @param \DocuSign\eSign\Model\BillingPrice[] $prices * * @return $this */ @@ -580,7 +580,7 @@ public function getUsedQuantity() /** * Sets used_quantity * - * @param ?string $used_quantity + * @param ?string $used_quantity * * @return $this */ diff --git a/src/Model/BillingChargeResponse.php b/src/Model/BillingChargeResponse.php index 84a77484..0cfc4af3 100644 --- a/src/Model/BillingChargeResponse.php +++ b/src/Model/BillingChargeResponse.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_charge_items'] = isset($data['billing_charge_items']) ? $data['billing_charge_items'] : null; } diff --git a/src/Model/BillingDiscount.php b/src/Model/BillingDiscount.php index 961e5ab0..57b26198 100644 --- a/src/Model/BillingDiscount.php +++ b/src/Model/BillingDiscount.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['begin_quantity'] = isset($data['begin_quantity']) ? $data['begin_quantity'] : null; $this->container['discount'] = isset($data['discount']) ? $data['discount'] : null; @@ -255,7 +255,7 @@ public function getDiscount() /** * Sets discount * - * @param ?string $discount + * @param ?string $discount * * @return $this */ @@ -279,7 +279,7 @@ public function getEndQuantity() /** * Sets end_quantity * - * @param ?string $end_quantity + * @param ?string $end_quantity * * @return $this */ diff --git a/src/Model/BillingEntityInformationResponse.php b/src/Model/BillingEntityInformationResponse.php index 9dc99cb5..fb1797e5 100644 --- a/src/Model/BillingEntityInformationResponse.php +++ b/src/Model/BillingEntityInformationResponse.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_profile'] = isset($data['billing_profile']) ? $data['billing_profile'] : null; $this->container['entity_name'] = isset($data['entity_name']) ? $data['entity_name'] : null; @@ -237,7 +237,7 @@ public function getBillingProfile() /** * Sets billing_profile * - * @param ?string $billing_profile + * @param ?string $billing_profile * * @return $this */ @@ -261,7 +261,7 @@ public function getEntityName() /** * Sets entity_name * - * @param ?string $entity_name + * @param ?string $entity_name * * @return $this */ @@ -285,7 +285,7 @@ public function getExternalEntityId() /** * Sets external_entity_id * - * @param ?string $external_entity_id + * @param ?string $external_entity_id * * @return $this */ @@ -309,7 +309,7 @@ public function getIsExternallyBilled() /** * Sets is_externally_billed * - * @param ?string $is_externally_billed + * @param ?string $is_externally_billed * * @return $this */ diff --git a/src/Model/BillingInvoice.php b/src/Model/BillingInvoice.php index a2f9fcd5..1f698087 100644 --- a/src/Model/BillingInvoice.php +++ b/src/Model/BillingInvoice.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['balance'] = isset($data['balance']) ? $data['balance'] : null; @@ -442,7 +442,7 @@ public function getNonTaxableAmount() /** * Sets non_taxable_amount * - * @param ?string $non_taxable_amount + * @param ?string $non_taxable_amount * * @return $this */ @@ -466,7 +466,7 @@ public function getPdfAvailable() /** * Sets pdf_available * - * @param ?string $pdf_available + * @param ?string $pdf_available * * @return $this */ @@ -490,7 +490,7 @@ public function getTaxableAmount() /** * Sets taxable_amount * - * @param ?string $taxable_amount + * @param ?string $taxable_amount * * @return $this */ diff --git a/src/Model/BillingInvoiceItem.php b/src/Model/BillingInvoiceItem.php index a860bba3..866999c7 100644 --- a/src/Model/BillingInvoiceItem.php +++ b/src/Model/BillingInvoiceItem.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['charge_amount'] = isset($data['charge_amount']) ? $data['charge_amount'] : null; $this->container['charge_name'] = isset($data['charge_name']) ? $data['charge_name'] : null; @@ -328,7 +328,7 @@ public function getQuantity() /** * Sets quantity * - * @param ?string $quantity + * @param ?string $quantity * * @return $this */ @@ -352,7 +352,7 @@ public function getTaxAmount() /** * Sets tax_amount * - * @param ?string $tax_amount + * @param ?string $tax_amount * * @return $this */ @@ -376,7 +376,7 @@ public function getTaxExemptAmount() /** * Sets tax_exempt_amount * - * @param ?string $tax_exempt_amount + * @param ?string $tax_exempt_amount * * @return $this */ diff --git a/src/Model/BillingInvoicesResponse.php b/src/Model/BillingInvoicesResponse.php index bdd25ff8..27cc7949 100644 --- a/src/Model/BillingInvoicesResponse.php +++ b/src/Model/BillingInvoicesResponse.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_invoices'] = isset($data['billing_invoices']) ? $data['billing_invoices'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; diff --git a/src/Model/BillingInvoicesSummary.php b/src/Model/BillingInvoicesSummary.php index c4b8a527..5288becf 100644 --- a/src/Model/BillingInvoicesSummary.php +++ b/src/Model/BillingInvoicesSummary.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_balance'] = isset($data['account_balance']) ? $data['account_balance'] : null; $this->container['billing_invoices'] = isset($data['billing_invoices']) ? $data['billing_invoices'] : null; @@ -243,7 +243,7 @@ public function getAccountBalance() /** * Sets account_balance * - * @param ?string $account_balance + * @param ?string $account_balance * * @return $this */ @@ -291,7 +291,7 @@ public function getCurrencyCode() /** * Sets currency_code * - * @param ?string $currency_code + * @param ?string $currency_code * * @return $this */ @@ -315,7 +315,7 @@ public function getPastDueBalance() /** * Sets past_due_balance * - * @param ?string $past_due_balance + * @param ?string $past_due_balance * * @return $this */ @@ -339,7 +339,7 @@ public function getPaymentAllowed() /** * Sets payment_allowed * - * @param ?string $payment_allowed + * @param ?string $payment_allowed * * @return $this */ diff --git a/src/Model/BillingPayment.php b/src/Model/BillingPayment.php index 0d9a286e..415a92ee 100644 --- a/src/Model/BillingPayment.php +++ b/src/Model/BillingPayment.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['invoice_id'] = isset($data['invoice_id']) ? $data['invoice_id'] : null; @@ -280,7 +280,7 @@ public function getPaymentId() /** * Sets payment_id * - * @param ?string $payment_id + * @param ?string $payment_id * * @return $this */ diff --git a/src/Model/BillingPaymentItem.php b/src/Model/BillingPaymentItem.php index e04341fc..5c3aa61d 100644 --- a/src/Model/BillingPaymentItem.php +++ b/src/Model/BillingPaymentItem.php @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; diff --git a/src/Model/BillingPaymentRequest.php b/src/Model/BillingPaymentRequest.php index a88ee9c2..9c5ed9dc 100644 --- a/src/Model/BillingPaymentRequest.php +++ b/src/Model/BillingPaymentRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['payment_amount'] = isset($data['payment_amount']) ? $data['payment_amount'] : null; } diff --git a/src/Model/BillingPaymentResponse.php b/src/Model/BillingPaymentResponse.php index 8a1f510a..411680d3 100644 --- a/src/Model/BillingPaymentResponse.php +++ b/src/Model/BillingPaymentResponse.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_payments'] = isset($data['billing_payments']) ? $data['billing_payments'] : null; } diff --git a/src/Model/BillingPaymentsResponse.php b/src/Model/BillingPaymentsResponse.php index 6d9e3134..e5a10eac 100644 --- a/src/Model/BillingPaymentsResponse.php +++ b/src/Model/BillingPaymentsResponse.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_payments'] = isset($data['billing_payments']) ? $data['billing_payments'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; diff --git a/src/Model/BillingPlan.php b/src/Model/BillingPlan.php index 3673202b..24cbf907 100644 --- a/src/Model/BillingPlan.php +++ b/src/Model/BillingPlan.php @@ -231,9 +231,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -248,7 +248,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['app_store_products'] = isset($data['app_store_products']) ? $data['app_store_products'] : null; $this->container['currency_plan_prices'] = isset($data['currency_plan_prices']) ? $data['currency_plan_prices'] : null; @@ -400,7 +400,7 @@ public function getOtherDiscountPercent() /** * Sets other_discount_percent * - * @param ?string $other_discount_percent + * @param ?string $other_discount_percent * * @return $this */ @@ -448,7 +448,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param ?string $payment_method + * @param ?string $payment_method * * @return $this */ @@ -520,7 +520,7 @@ public function getPlanFeatureSets() /** * Sets plan_feature_sets * - * @param \DocuSign\eSign\Model\FeatureSet[] $plan_feature_sets + * @param \DocuSign\eSign\Model\FeatureSet[] $plan_feature_sets * * @return $this */ @@ -544,7 +544,7 @@ public function getPlanId() /** * Sets plan_id * - * @param ?string $plan_id + * @param ?string $plan_id * * @return $this */ @@ -592,7 +592,7 @@ public function getSeatDiscounts() /** * Sets seat_discounts * - * @param \DocuSign\eSign\Model\SeatDiscount[] $seat_discounts + * @param \DocuSign\eSign\Model\SeatDiscount[] $seat_discounts * * @return $this */ diff --git a/src/Model/BillingPlanInformation.php b/src/Model/BillingPlanInformation.php index f8d35d67..de364098 100644 --- a/src/Model/BillingPlanInformation.php +++ b/src/Model/BillingPlanInformation.php @@ -266,9 +266,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -283,7 +283,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['app_store_receipt'] = isset($data['app_store_receipt']) ? $data['app_store_receipt'] : null; $this->container['billing_address'] = isset($data['billing_address']) ? $data['billing_address'] : null; @@ -346,7 +346,7 @@ public function getAppStoreReceipt() /** * Sets app_store_receipt * - * @param \DocuSign\eSign\Model\AppStoreReceipt $app_store_receipt + * @param \DocuSign\eSign\Model\AppStoreReceipt $app_store_receipt * * @return $this */ @@ -442,7 +442,7 @@ public function getDowngradeReason() /** * Sets downgrade_reason * - * @param ?string $downgrade_reason + * @param ?string $downgrade_reason * * @return $this */ @@ -466,7 +466,7 @@ public function getEnablePreAuth() /** * Sets enable_pre_auth * - * @param ?string $enable_pre_auth + * @param ?string $enable_pre_auth * * @return $this */ @@ -490,7 +490,7 @@ public function getEnableSupport() /** * Sets enable_support * - * @param ?string $enable_support + * @param ?string $enable_support * * @return $this */ @@ -562,7 +562,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param ?string $payment_method + * @param ?string $payment_method * * @return $this */ @@ -586,7 +586,7 @@ public function getPaymentProcessor() /** * Sets payment_processor * - * @param ?string $payment_processor + * @param ?string $payment_processor * * @return $this */ @@ -658,7 +658,7 @@ public function getProcessPayment() /** * Sets process_payment * - * @param ?string $process_payment + * @param ?string $process_payment * * @return $this */ @@ -706,7 +706,7 @@ public function getRenewalStatus() /** * Sets renewal_status * - * @param ?string $renewal_status + * @param ?string $renewal_status * * @return $this */ @@ -730,7 +730,7 @@ public function getSaleDiscountAmount() /** * Sets sale_discount_amount * - * @param ?string $sale_discount_amount + * @param ?string $sale_discount_amount * * @return $this */ @@ -754,7 +754,7 @@ public function getSaleDiscountFixedAmount() /** * Sets sale_discount_fixed_amount * - * @param ?string $sale_discount_fixed_amount + * @param ?string $sale_discount_fixed_amount * * @return $this */ @@ -778,7 +778,7 @@ public function getSaleDiscountPercent() /** * Sets sale_discount_percent * - * @param ?string $sale_discount_percent + * @param ?string $sale_discount_percent * * @return $this */ @@ -802,7 +802,7 @@ public function getSaleDiscountPeriods() /** * Sets sale_discount_periods * - * @param ?string $sale_discount_periods + * @param ?string $sale_discount_periods * * @return $this */ @@ -826,7 +826,7 @@ public function getSaleDiscountSeatPriceOverride() /** * Sets sale_discount_seat_price_override * - * @param ?string $sale_discount_seat_price_override + * @param ?string $sale_discount_seat_price_override * * @return $this */ @@ -850,7 +850,7 @@ public function getTaxExemptId() /** * Sets tax_exempt_id * - * @param ?string $tax_exempt_id + * @param ?string $tax_exempt_id * * @return $this */ diff --git a/src/Model/BillingPlanPreview.php b/src/Model/BillingPlanPreview.php index d3e317c6..c8f0a0b1 100644 --- a/src/Model/BillingPlanPreview.php +++ b/src/Model/BillingPlanPreview.php @@ -186,9 +186,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency_code'] = isset($data['currency_code']) ? $data['currency_code'] : null; $this->container['invoice'] = isset($data['invoice']) ? $data['invoice'] : null; @@ -274,7 +274,7 @@ public function getInvoice() /** * Sets invoice * - * @param \DocuSign\eSign\Model\BillingInvoice $invoice + * @param \DocuSign\eSign\Model\BillingInvoice $invoice * * @return $this */ @@ -298,7 +298,7 @@ public function getIsProrated() /** * Sets is_prorated * - * @param ?string $is_prorated + * @param ?string $is_prorated * * @return $this */ @@ -322,7 +322,7 @@ public function getSubtotalAmount() /** * Sets subtotal_amount * - * @param ?string $subtotal_amount + * @param ?string $subtotal_amount * * @return $this */ @@ -346,7 +346,7 @@ public function getTaxAmount() /** * Sets tax_amount * - * @param ?string $tax_amount + * @param ?string $tax_amount * * @return $this */ @@ -370,7 +370,7 @@ public function getTotalAmount() /** * Sets total_amount * - * @param ?string $total_amount + * @param ?string $total_amount * * @return $this */ diff --git a/src/Model/BillingPlanResponse.php b/src/Model/BillingPlanResponse.php index fb2dc0bc..2f159163 100644 --- a/src/Model/BillingPlanResponse.php +++ b/src/Model/BillingPlanResponse.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_plan'] = isset($data['billing_plan']) ? $data['billing_plan'] : null; $this->container['successor_plans'] = isset($data['successor_plans']) ? $data['successor_plans'] : null; @@ -250,7 +250,7 @@ public function getSuccessorPlans() /** * Sets successor_plans * - * @param \DocuSign\eSign\Model\BillingPlan[] $successor_plans + * @param \DocuSign\eSign\Model\BillingPlan[] $successor_plans * * @return $this */ diff --git a/src/Model/BillingPlanUpdateResponse.php b/src/Model/BillingPlanUpdateResponse.php index fb79710f..734cbfcc 100644 --- a/src/Model/BillingPlanUpdateResponse.php +++ b/src/Model/BillingPlanUpdateResponse.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_payment_method'] = isset($data['account_payment_method']) ? $data['account_payment_method'] : null; $this->container['billing_plan_preview'] = isset($data['billing_plan_preview']) ? $data['billing_plan_preview'] : null; @@ -262,7 +262,7 @@ public function getAccountPaymentMethod() /** * Sets account_payment_method * - * @param ?string $account_payment_method + * @param ?string $account_payment_method * * @return $this */ @@ -286,7 +286,7 @@ public function getBillingPlanPreview() /** * Sets billing_plan_preview * - * @param \DocuSign\eSign\Model\BillingPlanPreview $billing_plan_preview + * @param \DocuSign\eSign\Model\BillingPlanPreview $billing_plan_preview * * @return $this */ @@ -358,7 +358,7 @@ public function getPaymentCycle() /** * Sets payment_cycle * - * @param ?string $payment_cycle + * @param ?string $payment_cycle * * @return $this */ @@ -382,7 +382,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param ?string $payment_method + * @param ?string $payment_method * * @return $this */ @@ -406,7 +406,7 @@ public function getPlanId() /** * Sets plan_id * - * @param ?string $plan_id + * @param ?string $plan_id * * @return $this */ @@ -430,7 +430,7 @@ public function getPlanName() /** * Sets plan_name * - * @param ?string $plan_name + * @param ?string $plan_name * * @return $this */ diff --git a/src/Model/BillingPlansResponse.php b/src/Model/BillingPlansResponse.php index 4cd428ba..e8aeb04e 100644 --- a/src/Model/BillingPlansResponse.php +++ b/src/Model/BillingPlansResponse.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billing_plans'] = isset($data['billing_plans']) ? $data['billing_plans'] : null; } diff --git a/src/Model/BillingPrice.php b/src/Model/BillingPrice.php index e912718d..e29bedfe 100644 --- a/src/Model/BillingPrice.php +++ b/src/Model/BillingPrice.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['begin_quantity'] = isset($data['begin_quantity']) ? $data['begin_quantity'] : null; $this->container['end_quantity'] = isset($data['end_quantity']) ? $data['end_quantity'] : null; diff --git a/src/Model/Brand.php b/src/Model/Brand.php index ab5bfda7..9833724c 100644 --- a/src/Model/Brand.php +++ b/src/Model/Brand.php @@ -241,9 +241,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -258,7 +258,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brand_company'] = isset($data['brand_company']) ? $data['brand_company'] : null; $this->container['brand_id'] = isset($data['brand_id']) ? $data['brand_id'] : null; @@ -364,7 +364,7 @@ public function getBrandLanguages() /** * Sets brand_languages * - * @param ?string[] $brand_languages + * @param ?string[] $brand_languages * * @return $this */ @@ -412,7 +412,7 @@ public function getColors() /** * Sets colors * - * @param \DocuSign\eSign\Model\NameValue[] $colors + * @param \DocuSign\eSign\Model\NameValue[] $colors * * @return $this */ @@ -436,7 +436,7 @@ public function getDefaultBrandLanguage() /** * Sets default_brand_language * - * @param ?string $default_brand_language + * @param ?string $default_brand_language * * @return $this */ @@ -460,7 +460,7 @@ public function getEmailContent() /** * Sets email_content * - * @param \DocuSign\eSign\Model\BrandEmailContent[] $email_content + * @param \DocuSign\eSign\Model\BrandEmailContent[] $email_content * * @return $this */ @@ -508,7 +508,7 @@ public function getIsOrganizationBrand() /** * Sets is_organization_brand * - * @param ?string $is_organization_brand + * @param ?string $is_organization_brand * * @return $this */ @@ -532,7 +532,7 @@ public function getIsOverridingCompanyName() /** * Sets is_overriding_company_name * - * @param ?bool $is_overriding_company_name + * @param ?bool $is_overriding_company_name * * @return $this */ @@ -556,7 +556,7 @@ public function getIsSendingDefault() /** * Sets is_sending_default * - * @param ?bool $is_sending_default + * @param ?bool $is_sending_default * * @return $this */ @@ -580,7 +580,7 @@ public function getIsSigningDefault() /** * Sets is_signing_default * - * @param ?bool $is_signing_default + * @param ?bool $is_signing_default * * @return $this */ @@ -604,7 +604,7 @@ public function getLandingPages() /** * Sets landing_pages * - * @param \DocuSign\eSign\Model\NameValue[] $landing_pages + * @param \DocuSign\eSign\Model\NameValue[] $landing_pages * * @return $this */ @@ -628,7 +628,7 @@ public function getLinks() /** * Sets links * - * @param \DocuSign\eSign\Model\BrandLink[] $links + * @param \DocuSign\eSign\Model\BrandLink[] $links * * @return $this */ @@ -676,7 +676,7 @@ public function getOrganizationBrandLogo() /** * Sets organization_brand_logo * - * @param ?string $organization_brand_logo + * @param ?string $organization_brand_logo * * @return $this */ diff --git a/src/Model/BrandEmailContent.php b/src/Model/BrandEmailContent.php index 0690760a..27834f0f 100644 --- a/src/Model/BrandEmailContent.php +++ b/src/Model/BrandEmailContent.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['content'] = isset($data['content']) ? $data['content'] : null; $this->container['email_content_type'] = isset($data['email_content_type']) ? $data['email_content_type'] : null; @@ -238,7 +238,7 @@ public function getContent() /** * Sets content * - * @param ?string $content + * @param ?string $content * * @return $this */ @@ -262,7 +262,7 @@ public function getEmailContentType() /** * Sets email_content_type * - * @param ?string $email_content_type + * @param ?string $email_content_type * * @return $this */ @@ -286,7 +286,7 @@ public function getEmailToLink() /** * Sets email_to_link * - * @param ?string $email_to_link + * @param ?string $email_to_link * * @return $this */ @@ -310,7 +310,7 @@ public function getLinkText() /** * Sets link_text * - * @param ?string $link_text + * @param ?string $link_text * * @return $this */ diff --git a/src/Model/BrandLink.php b/src/Model/BrandLink.php index c4b3d667..f678577d 100644 --- a/src/Model/BrandLink.php +++ b/src/Model/BrandLink.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['link_text'] = isset($data['link_text']) ? $data['link_text'] : null; $this->container['link_type'] = isset($data['link_type']) ? $data['link_type'] : null; @@ -238,7 +238,7 @@ public function getLinkText() /** * Sets link_text * - * @param ?string $link_text + * @param ?string $link_text * * @return $this */ @@ -262,7 +262,7 @@ public function getLinkType() /** * Sets link_type * - * @param ?string $link_type + * @param ?string $link_type * * @return $this */ @@ -286,7 +286,7 @@ public function getShowLink() /** * Sets show_link * - * @param ?string $show_link + * @param ?string $show_link * * @return $this */ @@ -310,7 +310,7 @@ public function getUrlOrMailTo() /** * Sets url_or_mail_to * - * @param ?string $url_or_mail_to + * @param ?string $url_or_mail_to * * @return $this */ diff --git a/src/Model/BrandLogos.php b/src/Model/BrandLogos.php index 7f99c5dd..7079748f 100644 --- a/src/Model/BrandLogos.php +++ b/src/Model/BrandLogos.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['primary'] = isset($data['primary']) ? $data['primary'] : null; @@ -232,7 +232,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -256,7 +256,7 @@ public function getPrimary() /** * Sets primary * - * @param ?string $primary + * @param ?string $primary * * @return $this */ @@ -280,7 +280,7 @@ public function getSecondary() /** * Sets secondary * - * @param ?string $secondary + * @param ?string $secondary * * @return $this */ diff --git a/src/Model/BrandRequest.php b/src/Model/BrandRequest.php index e867c0e2..7158c8da 100644 --- a/src/Model/BrandRequest.php +++ b/src/Model/BrandRequest.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brand_id'] = isset($data['brand_id']) ? $data['brand_id'] : null; } diff --git a/src/Model/BrandResourceUrls.php b/src/Model/BrandResourceUrls.php index a3658bdf..58ba49b4 100644 --- a/src/Model/BrandResourceUrls.php +++ b/src/Model/BrandResourceUrls.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['sending'] = isset($data['sending']) ? $data['sending'] : null; @@ -238,7 +238,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -262,7 +262,7 @@ public function getSending() /** * Sets sending * - * @param ?string $sending + * @param ?string $sending * * @return $this */ @@ -286,7 +286,7 @@ public function getSigning() /** * Sets signing * - * @param ?string $signing + * @param ?string $signing * * @return $this */ @@ -310,7 +310,7 @@ public function getSigningCaptive() /** * Sets signing_captive * - * @param ?string $signing_captive + * @param ?string $signing_captive * * @return $this */ diff --git a/src/Model/BrandResources.php b/src/Model/BrandResources.php index ca93c710..9f14fb94 100644 --- a/src/Model/BrandResources.php +++ b/src/Model/BrandResources.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created_by_user_info'] = isset($data['created_by_user_info']) ? $data['created_by_user_info'] : null; $this->container['created_date'] = isset($data['created_date']) ? $data['created_date'] : null; @@ -286,7 +286,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -310,7 +310,7 @@ public function getDataNotSavedNotInMaster() /** * Sets data_not_saved_not_in_master * - * @param ?string[] $data_not_saved_not_in_master + * @param ?string[] $data_not_saved_not_in_master * * @return $this */ @@ -358,7 +358,7 @@ public function getModifiedDate() /** * Sets modified_date * - * @param ?string $modified_date + * @param ?string $modified_date * * @return $this */ @@ -382,7 +382,7 @@ public function getModifiedTemplates() /** * Sets modified_templates * - * @param ?string[] $modified_templates + * @param ?string[] $modified_templates * * @return $this */ @@ -406,7 +406,7 @@ public function getResourcesContentType() /** * Sets resources_content_type * - * @param ?string $resources_content_type + * @param ?string $resources_content_type * * @return $this */ @@ -430,7 +430,7 @@ public function getResourcesContentUri() /** * Sets resources_content_uri * - * @param ?string $resources_content_uri + * @param ?string $resources_content_uri * * @return $this */ diff --git a/src/Model/BrandResourcesList.php b/src/Model/BrandResourcesList.php index 590bf468..40d7cb12 100644 --- a/src/Model/BrandResourcesList.php +++ b/src/Model/BrandResourcesList.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['resources_content_types'] = isset($data['resources_content_types']) ? $data['resources_content_types'] : null; } diff --git a/src/Model/BrandsRequest.php b/src/Model/BrandsRequest.php index a2e300e8..a262ae10 100644 --- a/src/Model/BrandsRequest.php +++ b/src/Model/BrandsRequest.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brands'] = isset($data['brands']) ? $data['brands'] : null; } diff --git a/src/Model/BrandsResponse.php b/src/Model/BrandsResponse.php index 0dca0ac5..edd6fe48 100644 --- a/src/Model/BrandsResponse.php +++ b/src/Model/BrandsResponse.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brands'] = isset($data['brands']) ? $data['brands'] : null; $this->container['recipient_brand_id_default'] = isset($data['recipient_brand_id_default']) ? $data['recipient_brand_id_default'] : null; diff --git a/src/Model/BulkEnvelope.php b/src/Model/BulkEnvelope.php index 76ce2619..ca377b8e 100644 --- a/src/Model/BulkEnvelope.php +++ b/src/Model/BulkEnvelope.php @@ -200,9 +200,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -217,7 +217,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_recipient_row'] = isset($data['bulk_recipient_row']) ? $data['bulk_recipient_row'] : null; $this->container['bulk_status'] = isset($data['bulk_status']) ? $data['bulk_status'] : null; @@ -315,7 +315,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -411,7 +411,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -435,7 +435,7 @@ public function getSubmittedDateTime() /** * Sets submitted_date_time * - * @param ?string $submitted_date_time + * @param ?string $submitted_date_time * * @return $this */ diff --git a/src/Model/BulkEnvelopeStatus.php b/src/Model/BulkEnvelopeStatus.php index c3f32f44..635fc194 100644 --- a/src/Model/BulkEnvelopeStatus.php +++ b/src/Model/BulkEnvelopeStatus.php @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_id'] = isset($data['batch_id']) ? $data['batch_id'] : null; $this->container['batch_size'] = isset($data['batch_size']) ? $data['batch_size'] : null; diff --git a/src/Model/BulkEnvelopesResponse.php b/src/Model/BulkEnvelopesResponse.php index ee3712b8..a04f7833 100644 --- a/src/Model/BulkEnvelopesResponse.php +++ b/src/Model/BulkEnvelopesResponse.php @@ -188,9 +188,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_envelope_statuses'] = isset($data['bulk_envelope_statuses']) ? $data['bulk_envelope_statuses'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; diff --git a/src/Model/BulkProcessRequest.php b/src/Model/BulkProcessRequest.php index 6c07f62f..c0d213f4 100644 --- a/src/Model/BulkProcessRequest.php +++ b/src/Model/BulkProcessRequest.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_name'] = isset($data['batch_name']) ? $data['batch_name'] : null; $this->container['envelope_or_template_id'] = isset($data['envelope_or_template_id']) ? $data['envelope_or_template_id'] : null; diff --git a/src/Model/BulkProcessResponse.php b/src/Model/BulkProcessResponse.php index 5224f7ec..afa543f0 100644 --- a/src/Model/BulkProcessResponse.php +++ b/src/Model/BulkProcessResponse.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_id'] = isset($data['batch_id']) ? $data['batch_id'] : null; $this->container['batch_name'] = isset($data['batch_name']) ? $data['batch_name'] : null; @@ -255,7 +255,7 @@ public function getBatchId() /** * Sets batch_id * - * @param ?string $batch_id + * @param ?string $batch_id * * @return $this */ @@ -279,7 +279,7 @@ public function getBatchName() /** * Sets batch_name * - * @param ?string $batch_name + * @param ?string $batch_name * * @return $this */ @@ -303,7 +303,7 @@ public function getBatchSize() /** * Sets batch_size * - * @param ?string $batch_size + * @param ?string $batch_size * * @return $this */ @@ -351,7 +351,7 @@ public function getErrors() /** * Sets errors * - * @param ?string[] $errors + * @param ?string[] $errors * * @return $this */ @@ -375,7 +375,7 @@ public function getQueueLimit() /** * Sets queue_limit * - * @param ?string $queue_limit + * @param ?string $queue_limit * * @return $this */ @@ -399,7 +399,7 @@ public function getTotalQueued() /** * Sets total_queued * - * @param ?string $total_queued + * @param ?string $total_queued * * @return $this */ diff --git a/src/Model/BulkProcessResult.php b/src/Model/BulkProcessResult.php index 94145519..66d04527 100644 --- a/src/Model/BulkProcessResult.php +++ b/src/Model/BulkProcessResult.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['errors'] = isset($data['errors']) ? $data['errors'] : null; $this->container['list_id'] = isset($data['list_id']) ? $data['list_id'] : null; @@ -231,7 +231,7 @@ public function getErrors() /** * Sets errors * - * @param \DocuSign\eSign\Model\BulkSendBatchError[] $errors + * @param \DocuSign\eSign\Model\BulkSendBatchError[] $errors * * @return $this */ @@ -255,7 +255,7 @@ public function getListId() /** * Sets list_id * - * @param ?string $list_id + * @param ?string $list_id * * @return $this */ @@ -279,7 +279,7 @@ public function getSuccess() /** * Sets success * - * @param ?string $success + * @param ?string $success * * @return $this */ diff --git a/src/Model/BulkProcessingListSummaries.php b/src/Model/BulkProcessingListSummaries.php index 672ee3db..1d8bb929 100644 --- a/src/Model/BulkProcessingListSummaries.php +++ b/src/Model/BulkProcessingListSummaries.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_list_summaries'] = isset($data['bulk_list_summaries']) ? $data['bulk_list_summaries'] : null; } @@ -219,7 +219,7 @@ public function getBulkListSummaries() /** * Sets bulk_list_summaries * - * @param \DocuSign\eSign\Model\BulkProcessingListSummary[] $bulk_list_summaries + * @param \DocuSign\eSign\Model\BulkProcessingListSummary[] $bulk_list_summaries * * @return $this */ diff --git a/src/Model/BulkProcessingListSummary.php b/src/Model/BulkProcessingListSummary.php index 949a764c..1156f62d 100644 --- a/src/Model/BulkProcessingListSummary.php +++ b/src/Model/BulkProcessingListSummary.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_process_list_id'] = isset($data['bulk_process_list_id']) ? $data['bulk_process_list_id'] : null; $this->container['created_by_user'] = isset($data['created_by_user']) ? $data['created_by_user'] : null; @@ -237,7 +237,7 @@ public function getBulkProcessListId() /** * Sets bulk_process_list_id * - * @param ?string $bulk_process_list_id + * @param ?string $bulk_process_list_id * * @return $this */ @@ -261,7 +261,7 @@ public function getCreatedByUser() /** * Sets created_by_user * - * @param ?string $created_by_user + * @param ?string $created_by_user * * @return $this */ @@ -285,7 +285,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulkProcessingLists.php b/src/Model/BulkProcessingLists.php index 68fb99ac..7de1ecec 100644 --- a/src/Model/BulkProcessingLists.php +++ b/src/Model/BulkProcessingLists.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_process_list_ids'] = isset($data['bulk_process_list_ids']) ? $data['bulk_process_list_ids'] : null; } @@ -219,7 +219,7 @@ public function getBulkProcessListIds() /** * Sets bulk_process_list_ids * - * @param ?string[] $bulk_process_list_ids + * @param ?string[] $bulk_process_list_ids * * @return $this */ diff --git a/src/Model/BulkRecipient.php b/src/Model/BulkRecipient.php index 13040a2c..feef2e10 100644 --- a/src/Model/BulkRecipient.php +++ b/src/Model/BulkRecipient.php @@ -205,9 +205,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -222,7 +222,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; @@ -441,7 +441,7 @@ public function getRecipientSignatureProviderInfo() /** * Sets recipient_signature_provider_info * - * @param \DocuSign\eSign\Model\BulkRecipientSignatureProvider[] $recipient_signature_provider_info + * @param \DocuSign\eSign\Model\BulkRecipientSignatureProvider[] $recipient_signature_provider_info * * @return $this */ @@ -465,7 +465,7 @@ public function getRowNumber() /** * Sets row_number * - * @param ?string $row_number + * @param ?string $row_number * * @return $this */ diff --git a/src/Model/BulkRecipientSignatureProvider.php b/src/Model/BulkRecipientSignatureProvider.php index f585240d..497917a7 100644 --- a/src/Model/BulkRecipientSignatureProvider.php +++ b/src/Model/BulkRecipientSignatureProvider.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; @@ -225,7 +225,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulkRecipientTabLabel.php b/src/Model/BulkRecipientTabLabel.php index 799b95ce..ed68b0a0 100644 --- a/src/Model/BulkRecipientTabLabel.php +++ b/src/Model/BulkRecipientTabLabel.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; @@ -225,7 +225,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulkRecipientsRequest.php b/src/Model/BulkRecipientsRequest.php index 91eb2ba0..80b4fb29 100644 --- a/src/Model/BulkRecipientsRequest.php +++ b/src/Model/BulkRecipientsRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_recipients'] = isset($data['bulk_recipients']) ? $data['bulk_recipients'] : null; } diff --git a/src/Model/BulkRecipientsResponse.php b/src/Model/BulkRecipientsResponse.php index fcf3c726..6946d0a2 100644 --- a/src/Model/BulkRecipientsResponse.php +++ b/src/Model/BulkRecipientsResponse.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_recipients'] = isset($data['bulk_recipients']) ? $data['bulk_recipients'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; diff --git a/src/Model/BulkRecipientsSummaryResponse.php b/src/Model/BulkRecipientsSummaryResponse.php index f4ad9fbe..7c3277db 100644 --- a/src/Model/BulkRecipientsSummaryResponse.php +++ b/src/Model/BulkRecipientsSummaryResponse.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_recipients'] = isset($data['bulk_recipients']) ? $data['bulk_recipients'] : null; $this->container['bulk_recipients_count'] = isset($data['bulk_recipients_count']) ? $data['bulk_recipients_count'] : null; diff --git a/src/Model/BulkRecipientsUpdateResponse.php b/src/Model/BulkRecipientsUpdateResponse.php index e23dd9af..1cf42692 100644 --- a/src/Model/BulkRecipientsUpdateResponse.php +++ b/src/Model/BulkRecipientsUpdateResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['signer'] = isset($data['signer']) ? $data['signer'] : null; } @@ -219,7 +219,7 @@ public function getSigner() /** * Sets signer * - * @param \DocuSign\eSign\Model\Signer $signer + * @param \DocuSign\eSign\Model\Signer $signer * * @return $this */ diff --git a/src/Model/BulkSendBatchActionRequest.php b/src/Model/BulkSendBatchActionRequest.php index 6b9b70a7..4f909d1c 100644 --- a/src/Model/BulkSendBatchActionRequest.php +++ b/src/Model/BulkSendBatchActionRequest.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action'] = isset($data['action']) ? $data['action'] : null; $this->container['notification'] = isset($data['notification']) ? $data['notification'] : null; @@ -231,7 +231,7 @@ public function getAction() /** * Sets action * - * @param ?string $action + * @param ?string $action * * @return $this */ @@ -255,7 +255,7 @@ public function getNotification() /** * Sets notification * - * @param \DocuSign\eSign\Model\Notification $notification + * @param \DocuSign\eSign\Model\Notification $notification * * @return $this */ @@ -279,7 +279,7 @@ public function getVoidReason() /** * Sets void_reason * - * @param ?string $void_reason + * @param ?string $void_reason * * @return $this */ diff --git a/src/Model/BulkSendBatchError.php b/src/Model/BulkSendBatchError.php index 34878a5a..a12cf82d 100644 --- a/src/Model/BulkSendBatchError.php +++ b/src/Model/BulkSendBatchError.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error'] = isset($data['error']) ? $data['error'] : null; $this->container['error_detail'] = isset($data['error_detail']) ? $data['error_detail'] : null; @@ -225,7 +225,7 @@ public function getError() /** * Sets error * - * @param ?string $error + * @param ?string $error * * @return $this */ @@ -249,7 +249,7 @@ public function getErrorDetail() /** * Sets error_detail * - * @param ?string $error_detail + * @param ?string $error_detail * * @return $this */ diff --git a/src/Model/BulkSendBatchRequest.php b/src/Model/BulkSendBatchRequest.php index e53d937d..e9497aaa 100644 --- a/src/Model/BulkSendBatchRequest.php +++ b/src/Model/BulkSendBatchRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_name'] = isset($data['batch_name']) ? $data['batch_name'] : null; } @@ -219,7 +219,7 @@ public function getBatchName() /** * Sets batch_name * - * @param ?string $batch_name + * @param ?string $batch_name * * @return $this */ diff --git a/src/Model/BulkSendBatchStatus.php b/src/Model/BulkSendBatchStatus.php index 26ab04c5..b100e1ac 100644 --- a/src/Model/BulkSendBatchStatus.php +++ b/src/Model/BulkSendBatchStatus.php @@ -246,9 +246,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -263,7 +263,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action'] = isset($data['action']) ? $data['action'] : null; $this->container['action_status'] = isset($data['action_status']) ? $data['action_status'] : null; @@ -322,7 +322,7 @@ public function getAction() /** * Sets action * - * @param ?string $action + * @param ?string $action * * @return $this */ @@ -346,7 +346,7 @@ public function getActionStatus() /** * Sets action_status * - * @param ?string $action_status + * @param ?string $action_status * * @return $this */ @@ -370,7 +370,7 @@ public function getBatchId() /** * Sets batch_id * - * @param ?string $batch_id + * @param ?string $batch_id * * @return $this */ @@ -394,7 +394,7 @@ public function getBatchName() /** * Sets batch_name * - * @param ?string $batch_name + * @param ?string $batch_name * * @return $this */ @@ -418,7 +418,7 @@ public function getBatchSize() /** * Sets batch_size * - * @param ?string $batch_size + * @param ?string $batch_size * * @return $this */ @@ -442,7 +442,7 @@ public function getBulkErrors() /** * Sets bulk_errors * - * @param \DocuSign\eSign\Model\BulkSendErrorStatus[] $bulk_errors + * @param \DocuSign\eSign\Model\BulkSendErrorStatus[] $bulk_errors * * @return $this */ @@ -466,7 +466,7 @@ public function getEnvelopeIdOrTemplateId() /** * Sets envelope_id_or_template_id * - * @param ?string $envelope_id_or_template_id + * @param ?string $envelope_id_or_template_id * * @return $this */ @@ -490,7 +490,7 @@ public function getEnvelopesInfo() /** * Sets envelopes_info * - * @param \DocuSign\eSign\Model\BulkSendEnvelopesInfo $envelopes_info + * @param \DocuSign\eSign\Model\BulkSendEnvelopesInfo $envelopes_info * * @return $this */ @@ -514,7 +514,7 @@ public function getEnvelopesUri() /** * Sets envelopes_uri * - * @param ?string $envelopes_uri + * @param ?string $envelopes_uri * * @return $this */ @@ -538,7 +538,7 @@ public function getFailed() /** * Sets failed * - * @param ?string $failed + * @param ?string $failed * * @return $this */ @@ -562,7 +562,7 @@ public function getMailingListId() /** * Sets mailing_list_id * - * @param ?string $mailing_list_id + * @param ?string $mailing_list_id * * @return $this */ @@ -586,7 +586,7 @@ public function getMailingListName() /** * Sets mailing_list_name * - * @param ?string $mailing_list_name + * @param ?string $mailing_list_name * * @return $this */ @@ -610,7 +610,7 @@ public function getOwnerUserId() /** * Sets owner_user_id * - * @param ?string $owner_user_id + * @param ?string $owner_user_id * * @return $this */ @@ -634,7 +634,7 @@ public function getQueued() /** * Sets queued * - * @param ?string $queued + * @param ?string $queued * * @return $this */ @@ -658,7 +658,7 @@ public function getResendsRemaining() /** * Sets resends_remaining * - * @param ?string $resends_remaining + * @param ?string $resends_remaining * * @return $this */ @@ -682,7 +682,7 @@ public function getSenderUserId() /** * Sets sender_user_id * - * @param ?string $sender_user_id + * @param ?string $sender_user_id * * @return $this */ @@ -706,7 +706,7 @@ public function getSent() /** * Sets sent * - * @param ?string $sent + * @param ?string $sent * * @return $this */ @@ -730,7 +730,7 @@ public function getSubmittedDate() /** * Sets submitted_date * - * @param ?string $submitted_date + * @param ?string $submitted_date * * @return $this */ diff --git a/src/Model/BulkSendBatchSummaries.php b/src/Model/BulkSendBatchSummaries.php index c3fbc408..bbd878dc 100644 --- a/src/Model/BulkSendBatchSummaries.php +++ b/src/Model/BulkSendBatchSummaries.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_size_limit'] = isset($data['batch_size_limit']) ? $data['batch_size_limit'] : null; $this->container['bulk_batch_summaries'] = isset($data['bulk_batch_summaries']) ? $data['bulk_batch_summaries'] : null; @@ -286,7 +286,7 @@ public function getBatchSizeLimit() /** * Sets batch_size_limit * - * @param ?string $batch_size_limit + * @param ?string $batch_size_limit * * @return $this */ @@ -310,7 +310,7 @@ public function getBulkBatchSummaries() /** * Sets bulk_batch_summaries * - * @param \DocuSign\eSign\Model\BulkSendBatchSummary[] $bulk_batch_summaries + * @param \DocuSign\eSign\Model\BulkSendBatchSummary[] $bulk_batch_summaries * * @return $this */ @@ -334,7 +334,7 @@ public function getBulkProcessQueueLimit() /** * Sets bulk_process_queue_limit * - * @param ?string $bulk_process_queue_limit + * @param ?string $bulk_process_queue_limit * * @return $this */ @@ -358,7 +358,7 @@ public function getBulkProcessTotalQueued() /** * Sets bulk_process_total_queued * - * @param ?string $bulk_process_total_queued + * @param ?string $bulk_process_total_queued * * @return $this */ @@ -454,7 +454,7 @@ public function getQueueLimit() /** * Sets queue_limit * - * @param ?string $queue_limit + * @param ?string $queue_limit * * @return $this */ @@ -526,7 +526,7 @@ public function getTotalQueued() /** * Sets total_queued * - * @param ?string $total_queued + * @param ?string $total_queued * * @return $this */ diff --git a/src/Model/BulkSendBatchSummary.php b/src/Model/BulkSendBatchSummary.php index 4aeba2f1..b9d6ec1f 100644 --- a/src/Model/BulkSendBatchSummary.php +++ b/src/Model/BulkSendBatchSummary.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action'] = isset($data['action']) ? $data['action'] : null; $this->container['action_status'] = isset($data['action_status']) ? $data['action_status'] : null; @@ -274,7 +274,7 @@ public function getAction() /** * Sets action * - * @param ?string $action + * @param ?string $action * * @return $this */ @@ -298,7 +298,7 @@ public function getActionStatus() /** * Sets action_status * - * @param ?string $action_status + * @param ?string $action_status * * @return $this */ @@ -322,7 +322,7 @@ public function getBatchId() /** * Sets batch_id * - * @param ?string $batch_id + * @param ?string $batch_id * * @return $this */ @@ -346,7 +346,7 @@ public function getBatchName() /** * Sets batch_name * - * @param ?string $batch_name + * @param ?string $batch_name * * @return $this */ @@ -370,7 +370,7 @@ public function getBatchSize() /** * Sets batch_size * - * @param ?string $batch_size + * @param ?string $batch_size * * @return $this */ @@ -394,7 +394,7 @@ public function getBatchUri() /** * Sets batch_uri * - * @param ?string $batch_uri + * @param ?string $batch_uri * * @return $this */ @@ -418,7 +418,7 @@ public function getFailed() /** * Sets failed * - * @param ?string $failed + * @param ?string $failed * * @return $this */ @@ -442,7 +442,7 @@ public function getQueued() /** * Sets queued * - * @param ?string $queued + * @param ?string $queued * * @return $this */ @@ -466,7 +466,7 @@ public function getSent() /** * Sets sent * - * @param ?string $sent + * @param ?string $sent * * @return $this */ @@ -490,7 +490,7 @@ public function getSubmittedDate() /** * Sets submitted_date * - * @param ?string $submitted_date + * @param ?string $submitted_date * * @return $this */ diff --git a/src/Model/BulkSendEnvelopesInfo.php b/src/Model/BulkSendEnvelopesInfo.php index 891646f6..cde4d58a 100644 --- a/src/Model/BulkSendEnvelopesInfo.php +++ b/src/Model/BulkSendEnvelopesInfo.php @@ -220,9 +220,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -237,7 +237,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authoritative_copy'] = isset($data['authoritative_copy']) ? $data['authoritative_copy'] : null; $this->container['completed'] = isset($data['completed']) ? $data['completed'] : null; @@ -315,7 +315,7 @@ public function getCompleted() /** * Sets completed * - * @param ?string $completed + * @param ?string $completed * * @return $this */ @@ -339,7 +339,7 @@ public function getCorrect() /** * Sets correct * - * @param ?string $correct + * @param ?string $correct * * @return $this */ @@ -363,7 +363,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ @@ -387,7 +387,7 @@ public function getDeclined() /** * Sets declined * - * @param ?string $declined + * @param ?string $declined * * @return $this */ @@ -411,7 +411,7 @@ public function getDeleted() /** * Sets deleted * - * @param ?string $deleted + * @param ?string $deleted * * @return $this */ @@ -435,7 +435,7 @@ public function getDelivered() /** * Sets delivered * - * @param ?string $delivered + * @param ?string $delivered * * @return $this */ @@ -459,7 +459,7 @@ public function getDigitalSignaturesPending() /** * Sets digital_signatures_pending * - * @param ?string $digital_signatures_pending + * @param ?string $digital_signatures_pending * * @return $this */ @@ -483,7 +483,7 @@ public function getSent() /** * Sets sent * - * @param ?string $sent + * @param ?string $sent * * @return $this */ @@ -507,7 +507,7 @@ public function getSigned() /** * Sets signed * - * @param ?string $signed + * @param ?string $signed * * @return $this */ @@ -531,7 +531,7 @@ public function getTimedOut() /** * Sets timed_out * - * @param ?string $timed_out + * @param ?string $timed_out * * @return $this */ @@ -555,7 +555,7 @@ public function getTransferCompleted() /** * Sets transfer_completed * - * @param ?string $transfer_completed + * @param ?string $transfer_completed * * @return $this */ @@ -579,7 +579,7 @@ public function getVoided() /** * Sets voided * - * @param ?string $voided + * @param ?string $voided * * @return $this */ diff --git a/src/Model/BulkSendErrorStatus.php b/src/Model/BulkSendErrorStatus.php index 5553c885..ed96ac5e 100644 --- a/src/Model/BulkSendErrorStatus.php +++ b/src/Model/BulkSendErrorStatus.php @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created'] = isset($data['created']) ? $data['created'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; diff --git a/src/Model/BulkSendRequest.php b/src/Model/BulkSendRequest.php index f87c64d0..480bc78a 100644 --- a/src/Model/BulkSendRequest.php +++ b/src/Model/BulkSendRequest.php @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_name'] = isset($data['batch_name']) ? $data['batch_name'] : null; $this->container['envelope_or_template_id'] = isset($data['envelope_or_template_id']) ? $data['envelope_or_template_id'] : null; diff --git a/src/Model/BulkSendResponse.php b/src/Model/BulkSendResponse.php index a9588be5..2719b068 100644 --- a/src/Model/BulkSendResponse.php +++ b/src/Model/BulkSendResponse.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['batch_id'] = isset($data['batch_id']) ? $data['batch_id'] : null; $this->container['batch_name'] = isset($data['batch_name']) ? $data['batch_name'] : null; @@ -262,7 +262,7 @@ public function getBatchId() /** * Sets batch_id * - * @param ?string $batch_id + * @param ?string $batch_id * * @return $this */ @@ -286,7 +286,7 @@ public function getBatchName() /** * Sets batch_name * - * @param ?string $batch_name + * @param ?string $batch_name * * @return $this */ @@ -310,7 +310,7 @@ public function getBatchSize() /** * Sets batch_size * - * @param ?string $batch_size + * @param ?string $batch_size * * @return $this */ @@ -334,7 +334,7 @@ public function getEnvelopeOrTemplateId() /** * Sets envelope_or_template_id * - * @param ?string $envelope_or_template_id + * @param ?string $envelope_or_template_id * * @return $this */ @@ -382,7 +382,7 @@ public function getErrors() /** * Sets errors * - * @param ?string[] $errors + * @param ?string[] $errors * * @return $this */ @@ -406,7 +406,7 @@ public function getQueueLimit() /** * Sets queue_limit * - * @param ?string $queue_limit + * @param ?string $queue_limit * * @return $this */ @@ -430,7 +430,7 @@ public function getTotalQueued() /** * Sets total_queued * - * @param ?string $total_queued + * @param ?string $total_queued * * @return $this */ diff --git a/src/Model/BulkSendTestResponse.php b/src/Model/BulkSendTestResponse.php index fee7de66..885a3f8a 100644 --- a/src/Model/BulkSendTestResponse.php +++ b/src/Model/BulkSendTestResponse.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['can_be_sent'] = isset($data['can_be_sent']) ? $data['can_be_sent'] : null; $this->container['validation_error_details'] = isset($data['validation_error_details']) ? $data['validation_error_details'] : null; @@ -232,7 +232,7 @@ public function getCanBeSent() /** * Sets can_be_sent * - * @param ?bool $can_be_sent + * @param ?bool $can_be_sent * * @return $this */ @@ -256,7 +256,7 @@ public function getValidationErrorDetails() /** * Sets validation_error_details * - * @param ?string[] $validation_error_details + * @param ?string[] $validation_error_details * * @return $this */ @@ -280,7 +280,7 @@ public function getValidationErrors() /** * Sets validation_errors * - * @param ?string[] $validation_errors + * @param ?string[] $validation_errors * * @return $this */ diff --git a/src/Model/BulkSendingCopy.php b/src/Model/BulkSendingCopy.php index 55a0b1c2..da4d4b60 100644 --- a/src/Model/BulkSendingCopy.php +++ b/src/Model/BulkSendingCopy.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['custom_fields'] = isset($data['custom_fields']) ? $data['custom_fields'] : null; $this->container['doc_gen_form_fields'] = isset($data['doc_gen_form_fields']) ? $data['doc_gen_form_fields'] : null; @@ -268,7 +268,7 @@ public function getDocGenFormFields() /** * Sets doc_gen_form_fields * - * @param \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] $doc_gen_form_fields + * @param \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] $doc_gen_form_fields * * @return $this */ @@ -292,7 +292,7 @@ public function getEmailBlurb() /** * Sets email_blurb * - * @param ?string $email_blurb + * @param ?string $email_blurb * * @return $this */ diff --git a/src/Model/BulkSendingCopyCustomField.php b/src/Model/BulkSendingCopyCustomField.php index 354511d4..f98e2d24 100644 --- a/src/Model/BulkSendingCopyCustomField.php +++ b/src/Model/BulkSendingCopyCustomField.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; @@ -226,7 +226,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php b/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php index 8dc49d16..842ef0de 100644 --- a/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php +++ b/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_gen_form_field_list'] = isset($data['doc_gen_form_field_list']) ? $data['doc_gen_form_field_list'] : null; } @@ -219,7 +219,7 @@ public function getDocGenFormFieldList() /** * Sets doc_gen_form_field_list * - * @param \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] $doc_gen_form_field_list + * @param \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] $doc_gen_form_field_list * * @return $this */ diff --git a/src/Model/BulkSendingCopyRecipient.php b/src/Model/BulkSendingCopyRecipient.php index 77ddbefe..7f99b7da 100644 --- a/src/Model/BulkSendingCopyRecipient.php +++ b/src/Model/BulkSendingCopyRecipient.php @@ -281,9 +281,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -298,7 +298,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['client_user_id'] = isset($data['client_user_id']) ? $data['client_user_id'] : null; @@ -460,7 +460,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -556,7 +556,7 @@ public function getHostEmail() /** * Sets host_email * - * @param ?string $host_email + * @param ?string $host_email * * @return $this */ @@ -580,7 +580,7 @@ public function getHostName() /** * Sets host_name * - * @param ?string $host_name + * @param ?string $host_name * * @return $this */ @@ -652,7 +652,7 @@ public function getIdentificationMethod() /** * Sets identification_method * - * @param ?string $identification_method + * @param ?string $identification_method * * @return $this */ @@ -676,7 +676,7 @@ public function getIdentityVerification() /** * Sets identity_verification * - * @param \DocuSign\eSign\Model\RecipientIdentityVerification $identity_verification + * @param \DocuSign\eSign\Model\RecipientIdentityVerification $identity_verification * * @return $this */ @@ -700,7 +700,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -796,7 +796,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -844,7 +844,7 @@ public function getSignerName() /** * Sets signer_name * - * @param ?string $signer_name + * @param ?string $signer_name * * @return $this */ @@ -940,7 +940,7 @@ public function getTabs() /** * Sets tabs * - * @param \DocuSign\eSign\Model\BulkSendingCopyTab[] $tabs + * @param \DocuSign\eSign\Model\BulkSendingCopyTab[] $tabs * * @return $this */ diff --git a/src/Model/BulkSendingCopyTab.php b/src/Model/BulkSendingCopyTab.php index 5dd485ff..a39cb81b 100644 --- a/src/Model/BulkSendingCopyTab.php +++ b/src/Model/BulkSendingCopyTab.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['initial_value'] = isset($data['initial_value']) ? $data['initial_value'] : null; $this->container['tab_label'] = isset($data['tab_label']) ? $data['tab_label'] : null; diff --git a/src/Model/BulkSendingList.php b/src/Model/BulkSendingList.php index 2dd3ace1..53f62e71 100644 --- a/src/Model/BulkSendingList.php +++ b/src/Model/BulkSendingList.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_copies'] = isset($data['bulk_copies']) ? $data['bulk_copies'] : null; $this->container['list_id'] = isset($data['list_id']) ? $data['list_id'] : null; @@ -232,7 +232,7 @@ public function getBulkCopies() /** * Sets bulk_copies * - * @param \DocuSign\eSign\Model\BulkSendingCopy[] $bulk_copies + * @param \DocuSign\eSign\Model\BulkSendingCopy[] $bulk_copies * * @return $this */ @@ -256,7 +256,7 @@ public function getListId() /** * Sets list_id * - * @param ?string $list_id + * @param ?string $list_id * * @return $this */ @@ -280,7 +280,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulkSendingListSummaries.php b/src/Model/BulkSendingListSummaries.php index c865ef56..8264a19b 100644 --- a/src/Model/BulkSendingListSummaries.php +++ b/src/Model/BulkSendingListSummaries.php @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_list_summaries'] = isset($data['bulk_list_summaries']) ? $data['bulk_list_summaries'] : null; } diff --git a/src/Model/BulkSendingListSummary.php b/src/Model/BulkSendingListSummary.php index c127a517..a51989a4 100644 --- a/src/Model/BulkSendingListSummary.php +++ b/src/Model/BulkSendingListSummary.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_send_list_id'] = isset($data['bulk_send_list_id']) ? $data['bulk_send_list_id'] : null; $this->container['created_by_user'] = isset($data['created_by_user']) ? $data['created_by_user'] : null; @@ -238,7 +238,7 @@ public function getBulkSendListId() /** * Sets bulk_send_list_id * - * @param ?string $bulk_send_list_id + * @param ?string $bulk_send_list_id * * @return $this */ @@ -262,7 +262,7 @@ public function getCreatedByUser() /** * Sets created_by_user * - * @param ?string $created_by_user + * @param ?string $created_by_user * * @return $this */ @@ -286,7 +286,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -310,7 +310,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/BulksendingCopyDocGenFormField.php b/src/Model/BulksendingCopyDocGenFormField.php index 99ba27bd..cf6ee3f7 100644 --- a/src/Model/BulksendingCopyDocGenFormField.php +++ b/src/Model/BulksendingCopyDocGenFormField.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['row_values'] = isset($data['row_values']) ? $data['row_values'] : null; @@ -231,7 +231,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -255,7 +255,7 @@ public function getRowValues() /** * Sets row_values * - * @param \DocuSign\eSign\Model\BulkSendingCopyDocGenFormFieldRowValue[] $row_values + * @param \DocuSign\eSign\Model\BulkSendingCopyDocGenFormFieldRowValue[] $row_values * * @return $this */ diff --git a/src/Model/CaptiveRecipient.php b/src/Model/CaptiveRecipient.php index 8f48b56c..812abc44 100644 --- a/src/Model/CaptiveRecipient.php +++ b/src/Model/CaptiveRecipient.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['client_user_id'] = isset($data['client_user_id']) ? $data['client_user_id'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; diff --git a/src/Model/CaptiveRecipientInformation.php b/src/Model/CaptiveRecipientInformation.php index b9c0a035..88cafc1f 100644 --- a/src/Model/CaptiveRecipientInformation.php +++ b/src/Model/CaptiveRecipientInformation.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['captive_recipients'] = isset($data['captive_recipients']) ? $data['captive_recipients'] : null; } diff --git a/src/Model/CarbonCopy.php b/src/Model/CarbonCopy.php index 153279b1..0fc03280 100644 --- a/src/Model/CarbonCopy.php +++ b/src/Model/CarbonCopy.php @@ -561,9 +561,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -578,7 +578,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -772,7 +772,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -796,7 +796,7 @@ public function getAgentCanEditEmail() /** * Sets agent_can_edit_email * - * @param ?string $agent_can_edit_email + * @param ?string $agent_can_edit_email * * @return $this */ @@ -820,7 +820,7 @@ public function getAgentCanEditName() /** * Sets agent_can_edit_name * - * @param ?string $agent_can_edit_name + * @param ?string $agent_can_edit_name * * @return $this */ @@ -844,7 +844,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -868,7 +868,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -892,7 +892,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -940,7 +940,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -964,7 +964,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1132,7 +1132,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1156,7 +1156,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1180,7 +1180,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1204,7 +1204,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1300,7 +1300,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1492,7 +1492,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1660,7 +1660,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -1708,7 +1708,7 @@ public function getLinkedAccountConfigurationId() /** * Sets linked_account_configuration_id * - * @param ?string $linked_account_configuration_id + * @param ?string $linked_account_configuration_id * * @return $this */ @@ -1732,7 +1732,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1756,7 +1756,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1996,7 +1996,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2044,7 +2044,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2068,7 +2068,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2452,7 +2452,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2476,7 +2476,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2572,7 +2572,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2596,7 +2596,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2620,7 +2620,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/CertifiedDelivery.php b/src/Model/CertifiedDelivery.php index 6aa54d4e..56d9b648 100644 --- a/src/Model/CertifiedDelivery.php +++ b/src/Model/CertifiedDelivery.php @@ -551,9 +551,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -568,7 +568,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -760,7 +760,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -784,7 +784,7 @@ public function getAgentCanEditEmail() /** * Sets agent_can_edit_email * - * @param ?string $agent_can_edit_email + * @param ?string $agent_can_edit_email * * @return $this */ @@ -808,7 +808,7 @@ public function getAgentCanEditName() /** * Sets agent_can_edit_name * - * @param ?string $agent_can_edit_name + * @param ?string $agent_can_edit_name * * @return $this */ @@ -832,7 +832,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -856,7 +856,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -880,7 +880,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -928,7 +928,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -952,7 +952,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1120,7 +1120,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1144,7 +1144,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1168,7 +1168,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1192,7 +1192,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1216,7 +1216,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -1288,7 +1288,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1480,7 +1480,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1648,7 +1648,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -1696,7 +1696,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1720,7 +1720,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1744,7 +1744,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1960,7 +1960,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2008,7 +2008,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2032,7 +2032,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2416,7 +2416,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2440,7 +2440,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2512,7 +2512,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2536,7 +2536,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2560,7 +2560,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/Checkbox.php b/src/Model/Checkbox.php index abef14cc..c1035434 100644 --- a/src/Model/Checkbox.php +++ b/src/Model/Checkbox.php @@ -691,9 +691,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -708,7 +708,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -856,7 +856,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -880,7 +880,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -904,7 +904,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1192,7 +1192,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1432,7 +1432,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1456,7 +1456,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1576,7 +1576,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1720,7 +1720,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1888,7 +1888,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1936,7 +1936,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1984,7 +1984,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2200,7 +2200,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2344,7 +2344,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2560,7 +2560,7 @@ public function getSelectedOriginal() /** * Sets selected_original * - * @param ?string $selected_original + * @param ?string $selected_original * * @return $this */ @@ -2584,7 +2584,7 @@ public function getSelectedOriginalMetadata() /** * Sets selected_original_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $selected_original_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $selected_original_metadata * * @return $this */ @@ -2656,7 +2656,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -2728,7 +2728,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2800,7 +2800,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2824,7 +2824,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2968,7 +2968,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3016,7 +3016,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3160,7 +3160,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3256,7 +3256,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/ChunkedUploadPart.php b/src/Model/ChunkedUploadPart.php index 0fcbba1b..515c66e2 100644 --- a/src/Model/ChunkedUploadPart.php +++ b/src/Model/ChunkedUploadPart.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sequence'] = isset($data['sequence']) ? $data['sequence'] : null; $this->container['size'] = isset($data['size']) ? $data['size'] : null; @@ -226,7 +226,7 @@ public function getSequence() /** * Sets sequence * - * @param ?string $sequence + * @param ?string $sequence * * @return $this */ @@ -250,7 +250,7 @@ public function getSize() /** * Sets size * - * @param ?string $size + * @param ?string $size * * @return $this */ diff --git a/src/Model/ChunkedUploadRequest.php b/src/Model/ChunkedUploadRequest.php index 90f7ce2b..827176e9 100644 --- a/src/Model/ChunkedUploadRequest.php +++ b/src/Model/ChunkedUploadRequest.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['chunked_upload_id'] = isset($data['chunked_upload_id']) ? $data['chunked_upload_id'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; @@ -226,7 +226,7 @@ public function getChunkedUploadId() /** * Sets chunked_upload_id * - * @param ?string $chunked_upload_id + * @param ?string $chunked_upload_id * * @return $this */ @@ -250,7 +250,7 @@ public function getData() /** * Sets data * - * @param ?string $data + * @param ?string $data * * @return $this */ diff --git a/src/Model/ChunkedUploadResponse.php b/src/Model/ChunkedUploadResponse.php index fc15dcfd..efd21734 100644 --- a/src/Model/ChunkedUploadResponse.php +++ b/src/Model/ChunkedUploadResponse.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['checksum'] = isset($data['checksum']) ? $data['checksum'] : null; $this->container['chunked_upload_id'] = isset($data['chunked_upload_id']) ? $data['chunked_upload_id'] : null; @@ -268,7 +268,7 @@ public function getChecksum() /** * Sets checksum * - * @param ?string $checksum + * @param ?string $checksum * * @return $this */ @@ -292,7 +292,7 @@ public function getChunkedUploadId() /** * Sets chunked_upload_id * - * @param ?string $chunked_upload_id + * @param ?string $chunked_upload_id * * @return $this */ @@ -316,7 +316,7 @@ public function getChunkedUploadParts() /** * Sets chunked_upload_parts * - * @param \DocuSign\eSign\Model\ChunkedUploadPart[] $chunked_upload_parts + * @param \DocuSign\eSign\Model\ChunkedUploadPart[] $chunked_upload_parts * * @return $this */ @@ -340,7 +340,7 @@ public function getChunkedUploadUri() /** * Sets chunked_upload_uri * - * @param ?string $chunked_upload_uri + * @param ?string $chunked_upload_uri * * @return $this */ @@ -364,7 +364,7 @@ public function getCommitted() /** * Sets committed * - * @param ?string $committed + * @param ?string $committed * * @return $this */ @@ -388,7 +388,7 @@ public function getExpirationDateTime() /** * Sets expiration_date_time * - * @param ?string $expiration_date_time + * @param ?string $expiration_date_time * * @return $this */ @@ -412,7 +412,7 @@ public function getMaxChunkedUploadParts() /** * Sets max_chunked_upload_parts * - * @param ?string $max_chunked_upload_parts + * @param ?string $max_chunked_upload_parts * * @return $this */ @@ -436,7 +436,7 @@ public function getMaxTotalSize() /** * Sets max_total_size * - * @param ?string $max_total_size + * @param ?string $max_total_size * * @return $this */ @@ -460,7 +460,7 @@ public function getTotalSize() /** * Sets total_size * - * @param ?string $total_size + * @param ?string $total_size * * @return $this */ diff --git a/src/Model/CloudStorageProvider.php b/src/Model/CloudStorageProvider.php index e07b83a6..1a42264f 100644 --- a/src/Model/CloudStorageProvider.php +++ b/src/Model/CloudStorageProvider.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_url'] = isset($data['authentication_url']) ? $data['authentication_url'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/CloudStorageProviders.php b/src/Model/CloudStorageProviders.php index 8e13a469..83b22f11 100644 --- a/src/Model/CloudStorageProviders.php +++ b/src/Model/CloudStorageProviders.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['storage_providers'] = isset($data['storage_providers']) ? $data['storage_providers'] : null; } diff --git a/src/Model/Comment.php b/src/Model/Comment.php index e3bbeb9c..631364e1 100644 --- a/src/Model/Comment.php +++ b/src/Model/Comment.php @@ -277,7 +277,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['hmac'] = isset($data['hmac']) ? $data['hmac'] : null; diff --git a/src/Model/CommentHistoryResult.php b/src/Model/CommentHistoryResult.php index 129a3f6f..206c3d5d 100644 --- a/src/Model/CommentHistoryResult.php +++ b/src/Model/CommentHistoryResult.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['comments'] = isset($data['comments']) ? $data['comments'] : null; $this->container['count'] = isset($data['count']) ? $data['count'] : null; @@ -237,7 +237,7 @@ public function getComments() /** * Sets comments * - * @param \DocuSign\eSign\Model\Comment[] $comments + * @param \DocuSign\eSign\Model\Comment[] $comments * * @return $this */ @@ -261,7 +261,7 @@ public function getCount() /** * Sets count * - * @param ?int $count + * @param ?int $count * * @return $this */ @@ -285,7 +285,7 @@ public function getEndTimetoken() /** * Sets end_timetoken * - * @param ?string $end_timetoken + * @param ?string $end_timetoken * * @return $this */ @@ -309,7 +309,7 @@ public function getStartTimetoken() /** * Sets start_timetoken * - * @param ?string $start_timetoken + * @param ?string $start_timetoken * * @return $this */ diff --git a/src/Model/CommentPublish.php b/src/Model/CommentPublish.php index 536e3485..9ab3a6bf 100644 --- a/src/Model/CommentPublish.php +++ b/src/Model/CommentPublish.php @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['mentions'] = isset($data['mentions']) ? $data['mentions'] : null; diff --git a/src/Model/CommentThread.php b/src/Model/CommentThread.php index 9f7805c2..6cd6a624 100644 --- a/src/Model/CommentThread.php +++ b/src/Model/CommentThread.php @@ -625,9 +625,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -642,7 +642,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -777,7 +777,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -801,7 +801,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -825,7 +825,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1113,7 +1113,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1353,7 +1353,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1377,7 +1377,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1401,7 +1401,7 @@ public function getComments() /** * Sets comments * - * @param \DocuSign\eSign\Model\Comment[] $comments + * @param \DocuSign\eSign\Model\Comment[] $comments * * @return $this */ @@ -1521,7 +1521,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1665,7 +1665,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1833,7 +1833,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1881,7 +1881,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1929,7 +1929,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2121,7 +2121,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2217,7 +2217,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2313,7 +2313,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2385,7 +2385,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2409,7 +2409,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2553,7 +2553,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2601,7 +2601,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2745,7 +2745,7 @@ public function getThreadId() /** * Sets thread_id * - * @param ?string $thread_id + * @param ?string $thread_id * * @return $this */ @@ -2769,7 +2769,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2865,7 +2865,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/CommentsPublish.php b/src/Model/CommentsPublish.php index d8d7ced3..d761c4c2 100644 --- a/src/Model/CommentsPublish.php +++ b/src/Model/CommentsPublish.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['comments_to_publish'] = isset($data['comments_to_publish']) ? $data['comments_to_publish'] : null; } diff --git a/src/Model/CommissionCounty.php b/src/Model/CommissionCounty.php index 92cb6142..1b68d3aa 100644 --- a/src/Model/CommissionCounty.php +++ b/src/Model/CommissionCounty.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2398,7 +2398,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/CommissionExpiration.php b/src/Model/CommissionExpiration.php index 237c39ff..fdc7bfe5 100644 --- a/src/Model/CommissionExpiration.php +++ b/src/Model/CommissionExpiration.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2398,7 +2398,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/CommissionNumber.php b/src/Model/CommissionNumber.php index 1146f56f..1bd5b786 100644 --- a/src/Model/CommissionNumber.php +++ b/src/Model/CommissionNumber.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2398,7 +2398,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/CommissionState.php b/src/Model/CommissionState.php index 4b7de2d9..05e12a7f 100644 --- a/src/Model/CommissionState.php +++ b/src/Model/CommissionState.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2398,7 +2398,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Company.php b/src/Model/Company.php index 3694a6a4..7dbefcfb 100644 --- a/src/Model/Company.php +++ b/src/Model/Company.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/CompleteSignHashResponse.php b/src/Model/CompleteSignHashResponse.php index 5e10e1ea..eda78496 100644 --- a/src/Model/CompleteSignHashResponse.php +++ b/src/Model/CompleteSignHashResponse.php @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['documents'] = isset($data['documents']) ? $data['documents'] : null; $this->container['redirection_url'] = isset($data['redirection_url']) ? $data['redirection_url'] : null; diff --git a/src/Model/CompleteSignRequest.php b/src/Model/CompleteSignRequest.php index 6a3aa40b..e2b037d0 100644 --- a/src/Model/CompleteSignRequest.php +++ b/src/Model/CompleteSignRequest.php @@ -183,9 +183,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['certificate'] = isset($data['certificate']) ? $data['certificate'] : null; $this->container['correlation_id'] = isset($data['correlation_id']) ? $data['correlation_id'] : null; @@ -247,7 +247,7 @@ public function getCertificate() /** * Sets certificate * - * @param ?string $certificate + * @param ?string $certificate * * @return $this */ @@ -271,7 +271,7 @@ public function getCorrelationId() /** * Sets correlation_id * - * @param ?string $correlation_id + * @param ?string $correlation_id * * @return $this */ @@ -295,7 +295,7 @@ public function getDocumentUpdateInfos() /** * Sets document_update_infos * - * @param \DocuSign\eSign\Model\DocumentUpdateInfo[] $document_update_infos + * @param \DocuSign\eSign\Model\DocumentUpdateInfo[] $document_update_infos * * @return $this */ @@ -319,7 +319,7 @@ public function getMaxSignatureLength() /** * Sets max_signature_length * - * @param ?string $max_signature_length + * @param ?string $max_signature_length * * @return $this */ diff --git a/src/Model/CompositeTemplate.php b/src/Model/CompositeTemplate.php index 79f797cd..a914bba4 100644 --- a/src/Model/CompositeTemplate.php +++ b/src/Model/CompositeTemplate.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['composite_template_id'] = isset($data['composite_template_id']) ? $data['composite_template_id'] : null; $this->container['document'] = isset($data['document']) ? $data['document'] : null; @@ -316,7 +316,7 @@ public function getPdfMetaDataTemplateSequence() /** * Sets pdf_meta_data_template_sequence * - * @param ?string $pdf_meta_data_template_sequence + * @param ?string $pdf_meta_data_template_sequence * * @return $this */ diff --git a/src/Model/ConditionalRecipientRule.php b/src/Model/ConditionalRecipientRule.php index 485c79a0..d53b248d 100644 --- a/src/Model/ConditionalRecipientRule.php +++ b/src/Model/ConditionalRecipientRule.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['conditions'] = isset($data['conditions']) ? $data['conditions'] : null; $this->container['order'] = isset($data['order']) ? $data['order'] : null; @@ -238,7 +238,7 @@ public function getConditions() /** * Sets conditions * - * @param \DocuSign\eSign\Model\ConditionalRecipientRuleCondition[] $conditions + * @param \DocuSign\eSign\Model\ConditionalRecipientRuleCondition[] $conditions * * @return $this */ @@ -262,7 +262,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ diff --git a/src/Model/ConditionalRecipientRuleCondition.php b/src/Model/ConditionalRecipientRuleCondition.php index bfaecd66..14306fe2 100644 --- a/src/Model/ConditionalRecipientRuleCondition.php +++ b/src/Model/ConditionalRecipientRuleCondition.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['filters'] = isset($data['filters']) ? $data['filters'] : null; $this->container['order'] = isset($data['order']) ? $data['order'] : null; @@ -231,7 +231,7 @@ public function getFilters() /** * Sets filters * - * @param \DocuSign\eSign\Model\ConditionalRecipientRuleFilter[] $filters + * @param \DocuSign\eSign\Model\ConditionalRecipientRuleFilter[] $filters * * @return $this */ @@ -255,7 +255,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ @@ -279,7 +279,7 @@ public function getRecipientLabel() /** * Sets recipient_label * - * @param ?string $recipient_label + * @param ?string $recipient_label * * @return $this */ diff --git a/src/Model/ConditionalRecipientRuleFilter.php b/src/Model/ConditionalRecipientRuleFilter.php index e31902bb..ad47e667 100644 --- a/src/Model/ConditionalRecipientRuleFilter.php +++ b/src/Model/ConditionalRecipientRuleFilter.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['operator'] = isset($data['operator']) ? $data['operator'] : null; $this->container['recipient_id'] = isset($data['recipient_id']) ? $data['recipient_id'] : null; diff --git a/src/Model/ConnectConfigResults.php b/src/Model/ConnectConfigResults.php index 211a62ca..1b886571 100644 --- a/src/Model/ConnectConfigResults.php +++ b/src/Model/ConnectConfigResults.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configurations'] = isset($data['configurations']) ? $data['configurations'] : null; $this->container['total_records'] = isset($data['total_records']) ? $data['total_records'] : null; @@ -250,7 +250,7 @@ public function getTotalRecords() /** * Sets total_records * - * @param ?string $total_records + * @param ?string $total_records * * @return $this */ diff --git a/src/Model/ConnectCustomConfiguration.php b/src/Model/ConnectCustomConfiguration.php index 5c2d5e25..a58163c6 100644 --- a/src/Model/ConnectCustomConfiguration.php +++ b/src/Model/ConnectCustomConfiguration.php @@ -376,9 +376,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -393,7 +393,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_envelope_publish'] = isset($data['allow_envelope_publish']) ? $data['allow_envelope_publish'] : null; $this->container['allow_salesforce_publish'] = isset($data['allow_salesforce_publish']) ? $data['allow_salesforce_publish'] : null; @@ -502,7 +502,7 @@ public function getAllowSalesforcePublish() /** * Sets allow_salesforce_publish * - * @param ?string $allow_salesforce_publish + * @param ?string $allow_salesforce_publish * * @return $this */ @@ -550,7 +550,7 @@ public function getAllUsersExcept() /** * Sets all_users_except * - * @param ?string $all_users_except + * @param ?string $all_users_except * * @return $this */ @@ -622,7 +622,7 @@ public function getDeliveryMode() /** * Sets delivery_mode * - * @param ?string $delivery_mode + * @param ?string $delivery_mode * * @return $this */ @@ -646,7 +646,7 @@ public function getDisabledBy() /** * Sets disabled_by * - * @param ?string $disabled_by + * @param ?string $disabled_by * * @return $this */ @@ -742,7 +742,7 @@ public function getEvents() /** * Sets events * - * @param ?string[] $events + * @param ?string[] $events * * @return $this */ @@ -766,7 +766,7 @@ public function getExternalFolderId() /** * Sets external_folder_id * - * @param ?string $external_folder_id + * @param ?string $external_folder_id * * @return $this */ @@ -790,7 +790,7 @@ public function getExternalFolderLabel() /** * Sets external_folder_label * - * @param ?string $external_folder_label + * @param ?string $external_folder_label * * @return $this */ @@ -814,7 +814,7 @@ public function getGroupIds() /** * Sets group_ids * - * @param ?string[] $group_ids + * @param ?string[] $group_ids * * @return $this */ @@ -862,7 +862,7 @@ public function getIncludeCertSoapHeader() /** * Sets include_cert_soap_header * - * @param ?string $include_cert_soap_header + * @param ?string $include_cert_soap_header * * @return $this */ @@ -958,7 +958,7 @@ public function getIncludeHmac() /** * Sets include_hmac * - * @param ?string $include_hmac + * @param ?string $include_hmac * * @return $this */ @@ -982,7 +982,7 @@ public function getIncludeOAuth() /** * Sets include_o_auth * - * @param ?string $include_o_auth + * @param ?string $include_o_auth * * @return $this */ @@ -1054,7 +1054,7 @@ public function getIntegratorManaged() /** * Sets integrator_managed * - * @param ?string $integrator_managed + * @param ?string $integrator_managed * * @return $this */ @@ -1102,7 +1102,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -1126,7 +1126,7 @@ public function getPausePublish() /** * Sets pause_publish * - * @param ?string $pause_publish + * @param ?string $pause_publish * * @return $this */ @@ -1174,7 +1174,7 @@ public function getRequireMutualTls() /** * Sets require_mutual_tls * - * @param ?string $require_mutual_tls + * @param ?string $require_mutual_tls * * @return $this */ @@ -1222,7 +1222,7 @@ public function getSalesforceApiVersion() /** * Sets salesforce_api_version * - * @param ?string $salesforce_api_version + * @param ?string $salesforce_api_version * * @return $this */ @@ -1246,7 +1246,7 @@ public function getSalesforceAuthcode() /** * Sets salesforce_authcode * - * @param ?string $salesforce_authcode + * @param ?string $salesforce_authcode * * @return $this */ @@ -1270,7 +1270,7 @@ public function getSalesforceCallBackUrl() /** * Sets salesforce_call_back_url * - * @param ?string $salesforce_call_back_url + * @param ?string $salesforce_call_back_url * * @return $this */ @@ -1294,7 +1294,7 @@ public function getSalesforceDocumentsAsContentFiles() /** * Sets salesforce_documents_as_content_files * - * @param ?string $salesforce_documents_as_content_files + * @param ?string $salesforce_documents_as_content_files * * @return $this */ @@ -1318,7 +1318,7 @@ public function getSenderOverride() /** * Sets sender_override * - * @param ?string $sender_override + * @param ?string $sender_override * * @return $this */ @@ -1342,7 +1342,7 @@ public function getSenderSelectableItems() /** * Sets sender_selectable_items * - * @param ?string[] $sender_selectable_items + * @param ?string[] $sender_selectable_items * * @return $this */ @@ -1366,7 +1366,7 @@ public function getSfObjects() /** * Sets sf_objects * - * @param \DocuSign\eSign\Model\ConnectSalesforceObject[] $sf_objects + * @param \DocuSign\eSign\Model\ConnectSalesforceObject[] $sf_objects * * @return $this */ @@ -1486,7 +1486,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ diff --git a/src/Model/ConnectDebugLog.php b/src/Model/ConnectDebugLog.php index fe7a89c2..2e861a28 100644 --- a/src/Model/ConnectDebugLog.php +++ b/src/Model/ConnectDebugLog.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['connect_config'] = isset($data['connect_config']) ? $data['connect_config'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -243,7 +243,7 @@ public function getConnectConfig() /** * Sets connect_config * - * @param ?string $connect_config + * @param ?string $connect_config * * @return $this */ @@ -291,7 +291,7 @@ public function getEventDateTime() /** * Sets event_date_time * - * @param ?string $event_date_time + * @param ?string $event_date_time * * @return $this */ @@ -315,7 +315,7 @@ public function getEventDescription() /** * Sets event_description * - * @param ?string $event_description + * @param ?string $event_description * * @return $this */ @@ -339,7 +339,7 @@ public function getPayload() /** * Sets payload * - * @param ?string $payload + * @param ?string $payload * * @return $this */ diff --git a/src/Model/ConnectDeleteFailureResult.php b/src/Model/ConnectDeleteFailureResult.php index ae5d16b7..a602ccfb 100644 --- a/src/Model/ConnectDeleteFailureResult.php +++ b/src/Model/ConnectDeleteFailureResult.php @@ -59,7 +59,7 @@ class ConnectDeleteFailureResult implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - + ]; /** @@ -68,7 +68,7 @@ class ConnectDeleteFailureResult implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - + ]; /** @@ -98,7 +98,7 @@ public static function swaggerFormats() * @var string[] */ protected static $attributeMap = [ - + ]; /** @@ -107,7 +107,7 @@ public static function swaggerFormats() * @var string[] */ protected static $setters = [ - + ]; /** @@ -116,7 +116,7 @@ public static function swaggerFormats() * @var string[] */ protected static $getters = [ - + ]; /** @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { } diff --git a/src/Model/ConnectEventData.php b/src/Model/ConnectEventData.php index 00651b9b..4fdd7a92 100644 --- a/src/Model/ConnectEventData.php +++ b/src/Model/ConnectEventData.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['format'] = isset($data['format']) ? $data['format'] : null; $this->container['include_data'] = isset($data['include_data']) ? $data['include_data'] : null; @@ -232,7 +232,7 @@ public function getFormat() /** * Sets format * - * @param ?string $format + * @param ?string $format * * @return $this */ @@ -256,7 +256,7 @@ public function getIncludeData() /** * Sets include_data * - * @param ?string[] $include_data + * @param ?string[] $include_data * * @return $this */ @@ -280,7 +280,7 @@ public function getVersion() /** * Sets version * - * @param ?string $version + * @param ?string $version * * @return $this */ diff --git a/src/Model/ConnectFailureFilter.php b/src/Model/ConnectFailureFilter.php index 099c9967..81f948eb 100644 --- a/src/Model/ConnectFailureFilter.php +++ b/src/Model/ConnectFailureFilter.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_ids'] = isset($data['envelope_ids']) ? $data['envelope_ids'] : null; $this->container['synchronous'] = isset($data['synchronous']) ? $data['synchronous'] : null; @@ -226,7 +226,7 @@ public function getEnvelopeIds() /** * Sets envelope_ids * - * @param ?string[] $envelope_ids + * @param ?string[] $envelope_ids * * @return $this */ @@ -250,7 +250,7 @@ public function getSynchronous() /** * Sets synchronous * - * @param ?string $synchronous + * @param ?string $synchronous * * @return $this */ diff --git a/src/Model/ConnectFailureResult.php b/src/Model/ConnectFailureResult.php index a51856f9..f5043552 100644 --- a/src/Model/ConnectFailureResult.php +++ b/src/Model/ConnectFailureResult.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['config_id'] = isset($data['config_id']) ? $data['config_id'] : null; $this->container['config_url'] = isset($data['config_url']) ? $data['config_url'] : null; @@ -340,7 +340,7 @@ public function getStatusMessage() /** * Sets status_message * - * @param ?string $status_message + * @param ?string $status_message * * @return $this */ diff --git a/src/Model/ConnectFailureResults.php b/src/Model/ConnectFailureResults.php index 9ccdb4db..9533dfe9 100644 --- a/src/Model/ConnectFailureResults.php +++ b/src/Model/ConnectFailureResults.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['retry_queue'] = isset($data['retry_queue']) ? $data['retry_queue'] : null; } diff --git a/src/Model/ConnectHistoricalEnvelopeRepublish.php b/src/Model/ConnectHistoricalEnvelopeRepublish.php index 181931a4..ecd6ce54 100644 --- a/src/Model/ConnectHistoricalEnvelopeRepublish.php +++ b/src/Model/ConnectHistoricalEnvelopeRepublish.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['config'] = isset($data['config']) ? $data['config'] : null; $this->container['envelopes'] = isset($data['envelopes']) ? $data['envelopes'] : null; @@ -225,7 +225,7 @@ public function getConfig() /** * Sets config * - * @param \DocuSign\eSign\Model\ConnectCustomConfiguration $config + * @param \DocuSign\eSign\Model\ConnectCustomConfiguration $config * * @return $this */ @@ -249,7 +249,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param ?string[] $envelopes + * @param ?string[] $envelopes * * @return $this */ diff --git a/src/Model/ConnectLog.php b/src/Model/ConnectLog.php index 3e4a2c10..5eb2109a 100644 --- a/src/Model/ConnectLog.php +++ b/src/Model/ConnectLog.php @@ -246,9 +246,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -263,7 +263,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['config_url'] = isset($data['config_url']) ? $data['config_url'] : null; diff --git a/src/Model/ConnectLogs.php b/src/Model/ConnectLogs.php index 30b9b219..2b8e43b7 100644 --- a/src/Model/ConnectLogs.php +++ b/src/Model/ConnectLogs.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['failures'] = isset($data['failures']) ? $data['failures'] : null; $this->container['logs'] = isset($data['logs']) ? $data['logs'] : null; @@ -285,7 +285,7 @@ public function getTotalRecords() /** * Sets total_records * - * @param ?string $total_records + * @param ?string $total_records * * @return $this */ @@ -309,7 +309,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/ConnectOAuthConfig.php b/src/Model/ConnectOAuthConfig.php index b5c65867..ebc4b79a 100644 --- a/src/Model/ConnectOAuthConfig.php +++ b/src/Model/ConnectOAuthConfig.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorization_server_url'] = isset($data['authorization_server_url']) ? $data['authorization_server_url'] : null; $this->container['client_id'] = isset($data['client_id']) ? $data['client_id'] : null; @@ -243,7 +243,7 @@ public function getAuthorizationServerUrl() /** * Sets authorization_server_url * - * @param ?string $authorization_server_url + * @param ?string $authorization_server_url * * @return $this */ @@ -267,7 +267,7 @@ public function getClientId() /** * Sets client_id * - * @param ?string $client_id + * @param ?string $client_id * * @return $this */ @@ -291,7 +291,7 @@ public function getClientSecret() /** * Sets client_secret * - * @param ?string $client_secret + * @param ?string $client_secret * * @return $this */ @@ -315,7 +315,7 @@ public function getCustomParameters() /** * Sets custom_parameters * - * @param map[string,?string] $custom_parameters + * @param map[string,?string] $custom_parameters * * @return $this */ @@ -339,7 +339,7 @@ public function getScope() /** * Sets scope * - * @param ?string $scope + * @param ?string $scope * * @return $this */ diff --git a/src/Model/ConnectSalesforceField.php b/src/Model/ConnectSalesforceField.php index 33a180fa..5b2ccdb8 100644 --- a/src/Model/ConnectSalesforceField.php +++ b/src/Model/ConnectSalesforceField.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ds_attribute'] = isset($data['ds_attribute']) ? $data['ds_attribute'] : null; $this->container['ds_link'] = isset($data['ds_link']) ? $data['ds_link'] : null; @@ -262,7 +262,7 @@ public function getDsAttribute() /** * Sets ds_attribute * - * @param ?string $ds_attribute + * @param ?string $ds_attribute * * @return $this */ @@ -286,7 +286,7 @@ public function getDsLink() /** * Sets ds_link * - * @param ?string $ds_link + * @param ?string $ds_link * * @return $this */ @@ -310,7 +310,7 @@ public function getDsNode() /** * Sets ds_node * - * @param ?string $ds_node + * @param ?string $ds_node * * @return $this */ @@ -334,7 +334,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -358,7 +358,7 @@ public function getSfField() /** * Sets sf_field * - * @param ?string $sf_field + * @param ?string $sf_field * * @return $this */ @@ -382,7 +382,7 @@ public function getSfFieldName() /** * Sets sf_field_name * - * @param ?string $sf_field_name + * @param ?string $sf_field_name * * @return $this */ @@ -406,7 +406,7 @@ public function getSfFolder() /** * Sets sf_folder * - * @param ?string $sf_folder + * @param ?string $sf_folder * * @return $this */ @@ -430,7 +430,7 @@ public function getSfLockedValue() /** * Sets sf_locked_value * - * @param ?string $sf_locked_value + * @param ?string $sf_locked_value * * @return $this */ diff --git a/src/Model/ConnectSalesforceObject.php b/src/Model/ConnectSalesforceObject.php index bb2e7c0a..ad6da176 100644 --- a/src/Model/ConnectSalesforceObject.php +++ b/src/Model/ConnectSalesforceObject.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active'] = isset($data['active']) ? $data['active'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -268,7 +268,7 @@ public function getActive() /** * Sets active * - * @param ?string $active + * @param ?string $active * * @return $this */ @@ -292,7 +292,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -316,7 +316,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -340,7 +340,7 @@ public function getInsert() /** * Sets insert * - * @param ?string $insert + * @param ?string $insert * * @return $this */ @@ -364,7 +364,7 @@ public function getOnCompleteOnly() /** * Sets on_complete_only * - * @param ?string $on_complete_only + * @param ?string $on_complete_only * * @return $this */ @@ -388,7 +388,7 @@ public function getSelectFields() /** * Sets select_fields * - * @param \DocuSign\eSign\Model\ConnectSalesforceField[] $select_fields + * @param \DocuSign\eSign\Model\ConnectSalesforceField[] $select_fields * * @return $this */ @@ -412,7 +412,7 @@ public function getSfObject() /** * Sets sf_object * - * @param ?string $sf_object + * @param ?string $sf_object * * @return $this */ @@ -436,7 +436,7 @@ public function getSfObjectName() /** * Sets sf_object_name * - * @param ?string $sf_object_name + * @param ?string $sf_object_name * * @return $this */ @@ -460,7 +460,7 @@ public function getUpdateFields() /** * Sets update_fields * - * @param \DocuSign\eSign\Model\ConnectSalesforceField[] $update_fields + * @param \DocuSign\eSign\Model\ConnectSalesforceField[] $update_fields * * @return $this */ diff --git a/src/Model/ConnectUserInfo.php b/src/Model/ConnectUserInfo.php index 21898901..62bb2fe3 100644 --- a/src/Model/ConnectUserInfo.php +++ b/src/Model/ConnectUserInfo.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['is_included'] = isset($data['is_included']) ? $data['is_included'] : null; diff --git a/src/Model/ConnectUserObject.php b/src/Model/ConnectUserObject.php index 82954fcd..925ab2c3 100644 --- a/src/Model/ConnectUserObject.php +++ b/src/Model/ConnectUserObject.php @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configurationtype'] = isset($data['configurationtype']) ? $data['configurationtype'] : null; $this->container['connect_id'] = isset($data['connect_id']) ? $data['connect_id'] : null; diff --git a/src/Model/ConnectedData.php b/src/Model/ConnectedData.php index f3629451..4c3fa76d 100644 --- a/src/Model/ConnectedData.php +++ b/src/Model/ConnectedData.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['property_name'] = isset($data['property_name']) ? $data['property_name'] : null; $this->container['supported_operation'] = isset($data['supported_operation']) ? $data['supported_operation'] : null; @@ -243,7 +243,7 @@ public function getPropertyName() /** * Sets property_name * - * @param ?string $property_name + * @param ?string $property_name * * @return $this */ @@ -267,7 +267,7 @@ public function getSupportedOperation() /** * Sets supported_operation * - * @param ?string $supported_operation + * @param ?string $supported_operation * * @return $this */ @@ -291,7 +291,7 @@ public function getSupportedUri() /** * Sets supported_uri * - * @param ?string $supported_uri + * @param ?string $supported_uri * * @return $this */ @@ -315,7 +315,7 @@ public function getTypeName() /** * Sets type_name * - * @param ?string $type_name + * @param ?string $type_name * * @return $this */ @@ -339,7 +339,7 @@ public function getTypeSystemNamespace() /** * Sets type_system_namespace * - * @param ?string $type_system_namespace + * @param ?string $type_system_namespace * * @return $this */ diff --git a/src/Model/ConnectedObjectDetails.php b/src/Model/ConnectedObjectDetails.php index 2a3fcfda..89f57244 100644 --- a/src/Model/ConnectedObjectDetails.php +++ b/src/Model/ConnectedObjectDetails.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['record_id'] = isset($data['record_id']) ? $data['record_id'] : null; } diff --git a/src/Model/ConnectionInstance.php b/src/Model/ConnectionInstance.php index 73defafe..fd08dac1 100644 --- a/src/Model/ConnectionInstance.php +++ b/src/Model/ConnectionInstance.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['connection_key'] = isset($data['connection_key']) ? $data['connection_key'] : null; $this->container['connection_value'] = isset($data['connection_value']) ? $data['connection_value'] : null; @@ -225,7 +225,7 @@ public function getConnectionKey() /** * Sets connection_key * - * @param ?string $connection_key + * @param ?string $connection_key * * @return $this */ @@ -249,7 +249,7 @@ public function getConnectionValue() /** * Sets connection_value * - * @param ?string $connection_value + * @param ?string $connection_value * * @return $this */ diff --git a/src/Model/ConsentDetails.php b/src/Model/ConsentDetails.php index 406be70f..611b4446 100644 --- a/src/Model/ConsentDetails.php +++ b/src/Model/ConsentDetails.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['consent_key'] = isset($data['consent_key']) ? $data['consent_key'] : null; $this->container['delivery_method'] = isset($data['delivery_method']) ? $data['delivery_method'] : null; diff --git a/src/Model/ConsoleViewRequest.php b/src/Model/ConsoleViewRequest.php index 12a3f505..1173624b 100644 --- a/src/Model/ConsoleViewRequest.php +++ b/src/Model/ConsoleViewRequest.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null; diff --git a/src/Model/ConsumerDisclosure.php b/src/Model/ConsumerDisclosure.php index 9ce00980..c1a3fb21 100644 --- a/src/Model/ConsumerDisclosure.php +++ b/src/Model/ConsumerDisclosure.php @@ -316,9 +316,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -333,7 +333,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_esign_id'] = isset($data['account_esign_id']) ? $data['account_esign_id'] : null; $this->container['allow_cd_withdraw'] = isset($data['allow_cd_withdraw']) ? $data['allow_cd_withdraw'] : null; @@ -478,7 +478,7 @@ public function getChangeEmail() /** * Sets change_email * - * @param ?string $change_email + * @param ?string $change_email * * @return $this */ @@ -502,7 +502,7 @@ public function getChangeEmailOther() /** * Sets change_email_other * - * @param ?string $change_email_other + * @param ?string $change_email_other * * @return $this */ @@ -574,7 +574,7 @@ public function getCopyCostPerPage() /** * Sets copy_cost_per_page * - * @param ?string $copy_cost_per_page + * @param ?string $copy_cost_per_page * * @return $this */ @@ -622,7 +622,7 @@ public function getCopyRequestEmail() /** * Sets copy_request_email * - * @param ?string $copy_request_email + * @param ?string $copy_request_email * * @return $this */ @@ -646,7 +646,7 @@ public function getCustom() /** * Sets custom * - * @param ?string $custom + * @param ?string $custom * * @return $this */ @@ -670,7 +670,7 @@ public function getEnableEsign() /** * Sets enable_esign * - * @param ?string $enable_esign + * @param ?string $enable_esign * * @return $this */ @@ -718,7 +718,7 @@ public function getEsignText() /** * Sets esign_text * - * @param ?string $esign_text + * @param ?string $esign_text * * @return $this */ @@ -742,7 +742,7 @@ public function getLanguageCode() /** * Sets language_code * - * @param ?string $language_code + * @param ?string $language_code * * @return $this */ @@ -766,7 +766,7 @@ public function getMustAgreeToEsign() /** * Sets must_agree_to_esign * - * @param ?string $must_agree_to_esign + * @param ?string $must_agree_to_esign * * @return $this */ @@ -790,7 +790,7 @@ public function getPdfId() /** * Sets pdf_id * - * @param ?string $pdf_id + * @param ?string $pdf_id * * @return $this */ @@ -814,7 +814,7 @@ public function getUseBrand() /** * Sets use_brand * - * @param ?string $use_brand + * @param ?string $use_brand * * @return $this */ @@ -838,7 +838,7 @@ public function getUseConsumerDisclosureWithinAccount() /** * Sets use_consumer_disclosure_within_account * - * @param ?string $use_consumer_disclosure_within_account + * @param ?string $use_consumer_disclosure_within_account * * @return $this */ diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 23796a57..2e0808de 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -230,9 +230,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -247,7 +247,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cloud_provider'] = isset($data['cloud_provider']) ? $data['cloud_provider'] : null; $this->container['cloud_provider_container_id'] = isset($data['cloud_provider_container_id']) ? $data['cloud_provider_container_id'] : null; @@ -303,7 +303,7 @@ public function getCloudProvider() /** * Sets cloud_provider * - * @param ?string $cloud_provider + * @param ?string $cloud_provider * * @return $this */ @@ -327,7 +327,7 @@ public function getCloudProviderContainerId() /** * Sets cloud_provider_container_id * - * @param ?string $cloud_provider_container_id + * @param ?string $cloud_provider_container_id * * @return $this */ @@ -351,7 +351,7 @@ public function getContactId() /** * Sets contact_id * - * @param ?string $contact_id + * @param ?string $contact_id * * @return $this */ @@ -375,7 +375,7 @@ public function getContactPhoneNumbers() /** * Sets contact_phone_numbers * - * @param \DocuSign\eSign\Model\ContactPhoneNumber[] $contact_phone_numbers + * @param \DocuSign\eSign\Model\ContactPhoneNumber[] $contact_phone_numbers * * @return $this */ @@ -399,7 +399,7 @@ public function getContactUri() /** * Sets contact_uri * - * @param ?string $contact_uri + * @param ?string $contact_uri * * @return $this */ @@ -423,7 +423,7 @@ public function getEmails() /** * Sets emails * - * @param ?string[] $emails + * @param ?string[] $emails * * @return $this */ @@ -471,7 +471,7 @@ public function getIsOwner() /** * Sets is_owner * - * @param ?bool $is_owner + * @param ?bool $is_owner * * @return $this */ @@ -495,7 +495,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -519,7 +519,7 @@ public function getNotaryContactDetails() /** * Sets notary_contact_details * - * @param \DocuSign\eSign\Model\NotaryContactDetails $notary_contact_details + * @param \DocuSign\eSign\Model\NotaryContactDetails $notary_contact_details * * @return $this */ @@ -543,7 +543,7 @@ public function getOrganization() /** * Sets organization * - * @param ?string $organization + * @param ?string $organization * * @return $this */ @@ -567,7 +567,7 @@ public function getRoomContactType() /** * Sets room_contact_type * - * @param ?string $room_contact_type + * @param ?string $room_contact_type * * @return $this */ @@ -615,7 +615,7 @@ public function getSigningGroup() /** * Sets signing_group * - * @param ?string $signing_group + * @param ?string $signing_group * * @return $this */ diff --git a/src/Model/ContactGetResponse.php b/src/Model/ContactGetResponse.php index bf8d278c..e1400f17 100644 --- a/src/Model/ContactGetResponse.php +++ b/src/Model/ContactGetResponse.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['contacts'] = isset($data['contacts']) ? $data['contacts'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -256,7 +256,7 @@ public function getContacts() /** * Sets contacts * - * @param \DocuSign\eSign\Model\Contact[] $contacts + * @param \DocuSign\eSign\Model\Contact[] $contacts * * @return $this */ diff --git a/src/Model/ContactModRequest.php b/src/Model/ContactModRequest.php index 82174510..a7afe897 100644 --- a/src/Model/ContactModRequest.php +++ b/src/Model/ContactModRequest.php @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['contact_list'] = isset($data['contact_list']) ? $data['contact_list'] : null; } diff --git a/src/Model/ContactPhoneNumber.php b/src/Model/ContactPhoneNumber.php index 7dbaaf5f..7f99a513 100644 --- a/src/Model/ContactPhoneNumber.php +++ b/src/Model/ContactPhoneNumber.php @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['phone_number'] = isset($data['phone_number']) ? $data['phone_number'] : null; $this->container['phone_type'] = isset($data['phone_type']) ? $data['phone_type'] : null; diff --git a/src/Model/ContactUpdateResponse.php b/src/Model/ContactUpdateResponse.php index 61187d78..bfa296d2 100644 --- a/src/Model/ContactUpdateResponse.php +++ b/src/Model/ContactUpdateResponse.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['contacts'] = isset($data['contacts']) ? $data['contacts'] : null; } @@ -220,7 +220,7 @@ public function getContacts() /** * Sets contacts * - * @param \DocuSign\eSign\Model\Contact[] $contacts + * @param \DocuSign\eSign\Model\Contact[] $contacts * * @return $this */ diff --git a/src/Model/CorrectViewRequest.php b/src/Model/CorrectViewRequest.php index c3634b68..ad1c6189 100644 --- a/src/Model/CorrectViewRequest.php +++ b/src/Model/CorrectViewRequest.php @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['begin_on_tagger'] = isset($data['begin_on_tagger']) ? $data['begin_on_tagger'] : null; $this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null; diff --git a/src/Model/Country.php b/src/Model/Country.php index ab32a30d..6ad62fa3 100644 --- a/src/Model/Country.php +++ b/src/Model/Country.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['iso_code'] = isset($data['iso_code']) ? $data['iso_code'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -237,7 +237,7 @@ public function getIsoCode() /** * Sets iso_code * - * @param ?string $iso_code + * @param ?string $iso_code * * @return $this */ @@ -261,7 +261,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -285,7 +285,7 @@ public function getProvinces() /** * Sets provinces * - * @param \DocuSign\eSign\Model\Province[] $provinces + * @param \DocuSign\eSign\Model\Province[] $provinces * * @return $this */ @@ -309,7 +309,7 @@ public function getProvinceValidated() /** * Sets province_validated * - * @param ?string $province_validated + * @param ?string $province_validated * * @return $this */ diff --git a/src/Model/Credential.php b/src/Model/Credential.php index e750a5f2..09c1cc73 100644 --- a/src/Model/Credential.php +++ b/src/Model/Credential.php @@ -168,9 +168,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; @@ -253,7 +253,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/CreditCardInformation.php b/src/Model/CreditCardInformation.php index 6d758e48..7216faa2 100644 --- a/src/Model/CreditCardInformation.php +++ b/src/Model/CreditCardInformation.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address'] = isset($data['address']) ? $data['address'] : null; $this->container['card_last_digits'] = isset($data['card_last_digits']) ? $data['card_last_digits'] : null; @@ -292,7 +292,7 @@ public function getCardLastDigits() /** * Sets card_last_digits * - * @param ?string $card_last_digits + * @param ?string $card_last_digits * * @return $this */ @@ -364,7 +364,7 @@ public function getCvNumber() /** * Sets cv_number * - * @param ?string $cv_number + * @param ?string $cv_number * * @return $this */ @@ -460,7 +460,7 @@ public function getTokenizedCard() /** * Sets tokenized_card * - * @param ?string $tokenized_card + * @param ?string $tokenized_card * * @return $this */ diff --git a/src/Model/CreditCardTypes.php b/src/Model/CreditCardTypes.php index 52d16146..ad9387b7 100644 --- a/src/Model/CreditCardTypes.php +++ b/src/Model/CreditCardTypes.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['card_types'] = isset($data['card_types']) ? $data['card_types'] : null; } diff --git a/src/Model/Currency.php b/src/Model/Currency.php index e79bb232..e6c2f365 100644 --- a/src/Model/Currency.php +++ b/src/Model/Currency.php @@ -720,9 +720,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -737,7 +737,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['anchor_allow_white_space_in_characters'] = isset($data['anchor_allow_white_space_in_characters']) ? $data['anchor_allow_white_space_in_characters'] : null; $this->container['anchor_allow_white_space_in_characters_metadata'] = isset($data['anchor_allow_white_space_in_characters_metadata']) ? $data['anchor_allow_white_space_in_characters_metadata'] : null; @@ -891,7 +891,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1179,7 +1179,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1419,7 +1419,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1923,7 +1923,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1971,7 +1971,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2019,7 +2019,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2283,7 +2283,7 @@ public function getMaxNumericalValue() /** * Sets max_numerical_value * - * @param ?string $max_numerical_value + * @param ?string $max_numerical_value * * @return $this */ @@ -2331,7 +2331,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2355,7 +2355,7 @@ public function getMinNumericalValue() /** * Sets min_numerical_value * - * @param ?string $min_numerical_value + * @param ?string $min_numerical_value * * @return $this */ @@ -2379,7 +2379,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2427,7 +2427,7 @@ public function getNumericalValue() /** * Sets numerical_value * - * @param ?string $numerical_value + * @param ?string $numerical_value * * @return $this */ @@ -2571,7 +2571,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2907,7 +2907,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2979,7 +2979,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3123,7 +3123,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3171,7 +3171,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3315,7 +3315,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ diff --git a/src/Model/CurrencyFeatureSetPrice.php b/src/Model/CurrencyFeatureSetPrice.php index 584f94ac..5e4110eb 100644 --- a/src/Model/CurrencyFeatureSetPrice.php +++ b/src/Model/CurrencyFeatureSetPrice.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency_code'] = isset($data['currency_code']) ? $data['currency_code'] : null; $this->container['currency_symbol'] = isset($data['currency_symbol']) ? $data['currency_symbol'] : null; diff --git a/src/Model/CurrencyPlanPrice.php b/src/Model/CurrencyPlanPrice.php index 9f6ada35..e8437ddb 100644 --- a/src/Model/CurrencyPlanPrice.php +++ b/src/Model/CurrencyPlanPrice.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency_code'] = isset($data['currency_code']) ? $data['currency_code'] : null; $this->container['currency_symbol'] = isset($data['currency_symbol']) ? $data['currency_symbol'] : null; @@ -297,7 +297,7 @@ public function getPerSeatPrice() /** * Sets per_seat_price * - * @param ?string $per_seat_price + * @param ?string $per_seat_price * * @return $this */ diff --git a/src/Model/CustomField.php b/src/Model/CustomField.php index db2db2fc..156eeb87 100644 --- a/src/Model/CustomField.php +++ b/src/Model/CustomField.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['custom_field_type'] = isset($data['custom_field_type']) ? $data['custom_field_type'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -262,7 +262,7 @@ public function getCustomFieldType() /** * Sets custom_field_type * - * @param ?string $custom_field_type + * @param ?string $custom_field_type * * @return $this */ @@ -310,7 +310,7 @@ public function getFieldId() /** * Sets field_id * - * @param ?string $field_id + * @param ?string $field_id * * @return $this */ @@ -334,7 +334,7 @@ public function getListItems() /** * Sets list_items * - * @param ?string[] $list_items + * @param ?string[] $list_items * * @return $this */ @@ -358,7 +358,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -406,7 +406,7 @@ public function getShow() /** * Sets show * - * @param ?string $show + * @param ?string $show * * @return $this */ diff --git a/src/Model/CustomFieldV2.php b/src/Model/CustomFieldV2.php index 2c2e8f66..2dd5d83f 100644 --- a/src/Model/CustomFieldV2.php +++ b/src/Model/CustomFieldV2.php @@ -127,9 +127,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -141,7 +141,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configuration_type'] = isset($data['configuration_type']) ? $data['configuration_type'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -228,7 +228,7 @@ public function getFieldId() /** * Sets field_id - * @param string $field_id + * @param string $field_id * @return $this */ public function setFieldId($field_id) @@ -249,7 +249,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) @@ -291,7 +291,7 @@ public function getShow() /** * Sets show - * @param string $show + * @param string $show * @return $this */ public function setShow($show) diff --git a/src/Model/CustomFields.php b/src/Model/CustomFields.php index 1d8d90c3..9a735dd0 100644 --- a/src/Model/CustomFields.php +++ b/src/Model/CustomFields.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['list_custom_fields'] = isset($data['list_custom_fields']) ? $data['list_custom_fields'] : null; $this->container['text_custom_fields'] = isset($data['text_custom_fields']) ? $data['text_custom_fields'] : null; diff --git a/src/Model/CustomFieldsEnvelope.php b/src/Model/CustomFieldsEnvelope.php index 39a4183b..2f020dbd 100644 --- a/src/Model/CustomFieldsEnvelope.php +++ b/src/Model/CustomFieldsEnvelope.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['list_custom_fields'] = isset($data['list_custom_fields']) ? $data['list_custom_fields'] : null; $this->container['text_custom_fields'] = isset($data['text_custom_fields']) ? $data['text_custom_fields'] : null; diff --git a/src/Model/CustomSettingsInformation.php b/src/Model/CustomSettingsInformation.php index db3436f8..f4d5d663 100644 --- a/src/Model/CustomSettingsInformation.php +++ b/src/Model/CustomSettingsInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['custom_settings'] = isset($data['custom_settings']) ? $data['custom_settings'] : null; } @@ -219,7 +219,7 @@ public function getCustomSettings() /** * Sets custom_settings * - * @param \DocuSign\eSign\Model\NameValue[] $custom_settings + * @param \DocuSign\eSign\Model\NameValue[] $custom_settings * * @return $this */ diff --git a/src/Model/Date.php b/src/Model/Date.php index e4030596..f7bb4857 100644 --- a/src/Model/Date.php +++ b/src/Model/Date.php @@ -783,7 +783,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/DateSigned.php b/src/Model/DateSigned.php index 56291d10..06db0e52 100644 --- a/src/Model/DateSigned.php +++ b/src/Model/DateSigned.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1366,7 +1366,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1390,7 +1390,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1510,7 +1510,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1654,7 +1654,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1822,7 +1822,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1870,7 +1870,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2110,7 +2110,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2134,7 +2134,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2254,7 +2254,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2446,7 +2446,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2590,7 +2590,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/DateStampProperties.php b/src/Model/DateStampProperties.php index 352bd09d..f9013fce 100644 --- a/src/Model/DateStampProperties.php +++ b/src/Model/DateStampProperties.php @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date_area_height'] = isset($data['date_area_height']) ? $data['date_area_height'] : null; $this->container['date_area_width'] = isset($data['date_area_width']) ? $data['date_area_width'] : null; diff --git a/src/Model/Decline.php b/src/Model/Decline.php index ccbd21da..769ca59a 100644 --- a/src/Model/Decline.php +++ b/src/Model/Decline.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1414,7 +1414,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1558,7 +1558,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1750,7 +1750,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1966,7 +1966,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2014,7 +2014,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2206,7 +2206,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2302,7 +2302,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2398,7 +2398,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2470,7 +2470,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2494,7 +2494,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2686,7 +2686,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2830,7 +2830,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/DelayedRouting.php b/src/Model/DelayedRouting.php index 9b8a5ff5..2921ebab 100644 --- a/src/Model/DelayedRouting.php +++ b/src/Model/DelayedRouting.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; $this->container['rules'] = isset($data['rules']) ? $data['rules'] : null; diff --git a/src/Model/DelayedRoutingApiModel.php b/src/Model/DelayedRoutingApiModel.php index 6f8220f0..b6f7e6df 100644 --- a/src/Model/DelayedRoutingApiModel.php +++ b/src/Model/DelayedRoutingApiModel.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; $this->container['rules'] = isset($data['rules']) ? $data['rules'] : null; diff --git a/src/Model/DelegationInfo.php b/src/Model/DelegationInfo.php index 2d21ff52..649a19d8 100644 --- a/src/Model/DelegationInfo.php +++ b/src/Model/DelegationInfo.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -237,7 +237,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -261,7 +261,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -285,7 +285,7 @@ public function getUserAuthorizationId() /** * Sets user_authorization_id * - * @param ?string $user_authorization_id + * @param ?string $user_authorization_id * * @return $this */ @@ -309,7 +309,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/DiagnosticsSettingsInformation.php b/src/Model/DiagnosticsSettingsInformation.php index 429dec43..131361b8 100644 --- a/src/Model/DiagnosticsSettingsInformation.php +++ b/src/Model/DiagnosticsSettingsInformation.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_request_logging'] = isset($data['api_request_logging']) ? $data['api_request_logging'] : null; $this->container['api_request_log_max_entries'] = isset($data['api_request_log_max_entries']) ? $data['api_request_log_max_entries'] : null; diff --git a/src/Model/DirectDebitProcessorInformation.php b/src/Model/DirectDebitProcessorInformation.php index a28a0949..a69ad5e8 100644 --- a/src/Model/DirectDebitProcessorInformation.php +++ b/src/Model/DirectDebitProcessorInformation.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bank_branch_code'] = isset($data['bank_branch_code']) ? $data['bank_branch_code'] : null; $this->container['bank_check_digit'] = isset($data['bank_check_digit']) ? $data['bank_check_digit'] : null; @@ -286,7 +286,7 @@ public function getBankBranchCode() /** * Sets bank_branch_code * - * @param ?string $bank_branch_code + * @param ?string $bank_branch_code * * @return $this */ @@ -310,7 +310,7 @@ public function getBankCheckDigit() /** * Sets bank_check_digit * - * @param ?string $bank_check_digit + * @param ?string $bank_check_digit * * @return $this */ @@ -334,7 +334,7 @@ public function getBankCode() /** * Sets bank_code * - * @param ?string $bank_code + * @param ?string $bank_code * * @return $this */ @@ -358,7 +358,7 @@ public function getBankName() /** * Sets bank_name * - * @param ?string $bank_name + * @param ?string $bank_name * * @return $this */ @@ -382,7 +382,7 @@ public function getBankTransferAccountName() /** * Sets bank_transfer_account_name * - * @param ?string $bank_transfer_account_name + * @param ?string $bank_transfer_account_name * * @return $this */ @@ -406,7 +406,7 @@ public function getBankTransferAccountNumber() /** * Sets bank_transfer_account_number * - * @param ?string $bank_transfer_account_number + * @param ?string $bank_transfer_account_number * * @return $this */ @@ -430,7 +430,7 @@ public function getBankTransferType() /** * Sets bank_transfer_type * - * @param ?string $bank_transfer_type + * @param ?string $bank_transfer_type * * @return $this */ @@ -478,7 +478,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -526,7 +526,7 @@ public function getIBan() /** * Sets i_ban * - * @param ?string $i_ban + * @param ?string $i_ban * * @return $this */ @@ -550,7 +550,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ diff --git a/src/Model/DisplayApplianceAccount.php b/src/Model/DisplayApplianceAccount.php index 0adf5bb1..895fdd08 100644 --- a/src/Model/DisplayApplianceAccount.php +++ b/src/Model/DisplayApplianceAccount.php @@ -178,9 +178,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['opt_out_auto_nav_text_and_tab_color_updates'] = isset($data['opt_out_auto_nav_text_and_tab_color_updates']) ? $data['opt_out_auto_nav_text_and_tab_color_updates'] : null; @@ -265,7 +265,7 @@ public function getOptOutAutoNavTextAndTabColorUpdates() /** * Sets opt_out_auto_nav_text_and_tab_color_updates * - * @param ?bool $opt_out_auto_nav_text_and_tab_color_updates + * @param ?bool $opt_out_auto_nav_text_and_tab_color_updates * * @return $this */ @@ -289,7 +289,7 @@ public function getShowInitialConditionalFields() /** * Sets show_initial_conditional_fields * - * @param ?bool $show_initial_conditional_fields + * @param ?bool $show_initial_conditional_fields * * @return $this */ @@ -313,7 +313,7 @@ public function getSigningVersion() /** * Sets signing_version * - * @param ?string $signing_version + * @param ?string $signing_version * * @return $this */ @@ -337,7 +337,7 @@ public function getTagHasSigBlock() /** * Sets tag_has_sig_block * - * @param ?bool $tag_has_sig_block + * @param ?bool $tag_has_sig_block * * @return $this */ diff --git a/src/Model/DisplayApplianceDocument.php b/src/Model/DisplayApplianceDocument.php index 23f88308..025c5e8b 100644 --- a/src/Model/DisplayApplianceDocument.php +++ b/src/Model/DisplayApplianceDocument.php @@ -131,9 +131,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -145,7 +145,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attachment_description'] = isset($data['attachment_description']) ? $data['attachment_description'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; @@ -191,7 +191,7 @@ public function getAttachmentDescription() /** * Sets attachment_description - * @param string $attachment_description + * @param string $attachment_description * @return $this */ public function setAttachmentDescription($attachment_description) @@ -233,7 +233,7 @@ public function getDocumentType() /** * Sets document_type - * @param string $document_type + * @param string $document_type * @return $this */ public function setDocumentType($document_type) @@ -275,7 +275,7 @@ public function getExternalDocumentId() /** * Sets external_document_id - * @param string $external_document_id + * @param string $external_document_id * @return $this */ public function setExternalDocumentId($external_document_id) @@ -296,7 +296,7 @@ public function getLatestPdfId() /** * Sets latest_pdf_id - * @param string $latest_pdf_id + * @param string $latest_pdf_id * @return $this */ public function setLatestPdfId($latest_pdf_id) @@ -317,7 +317,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) @@ -338,7 +338,7 @@ public function getPages() /** * Sets pages - * @param int $pages + * @param int $pages * @return $this */ public function setPages($pages) diff --git a/src/Model/DisplayApplianceDocumentPage.php b/src/Model/DisplayApplianceDocumentPage.php index 5b862137..040c524a 100644 --- a/src/Model/DisplayApplianceDocumentPage.php +++ b/src/Model/DisplayApplianceDocumentPage.php @@ -139,9 +139,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -153,7 +153,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_page_count_total'] = isset($data['doc_page_count_total']) ? $data['doc_page_count_total'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; @@ -201,7 +201,7 @@ public function getDocPageCountTotal() /** * Sets doc_page_count_total - * @param int $doc_page_count_total + * @param int $doc_page_count_total * @return $this */ public function setDocPageCountTotal($doc_page_count_total) @@ -243,7 +243,7 @@ public function getDocumentName() /** * Sets document_name - * @param string $document_name + * @param string $document_name * @return $this */ public function setDocumentName($document_name) @@ -264,7 +264,7 @@ public function getExtension() /** * Sets extension - * @param string $extension + * @param string $extension * @return $this */ public function setExtension($extension) @@ -285,7 +285,7 @@ public function getHeight72Dpi() /** * Sets height72_dpi - * @param int $height72_dpi + * @param int $height72_dpi * @return $this */ public function setHeight72Dpi($height72_dpi) @@ -306,7 +306,7 @@ public function getIsAttachmentType() /** * Sets is_attachment_type - * @param bool $is_attachment_type + * @param bool $is_attachment_type * @return $this */ public function setIsAttachmentType($is_attachment_type) @@ -327,7 +327,7 @@ public function getPage() /** * Sets page - * @param int $page + * @param int $page * @return $this */ public function setPage($page) @@ -348,7 +348,7 @@ public function getPageId() /** * Sets page_id - * @param string $page_id + * @param string $page_id * @return $this */ public function setPageId($page_id) @@ -369,7 +369,7 @@ public function getType() /** * Sets type - * @param string $type + * @param string $type * @return $this */ public function setType($type) @@ -390,7 +390,7 @@ public function getWidth72Dpi() /** * Sets width72_dpi - * @param int $width72_dpi + * @param int $width72_dpi * @return $this */ public function setWidth72Dpi($width72_dpi) diff --git a/src/Model/DisplayApplianceEnvelope.php b/src/Model/DisplayApplianceEnvelope.php index 46574897..5d3261ae 100644 --- a/src/Model/DisplayApplianceEnvelope.php +++ b/src/Model/DisplayApplianceEnvelope.php @@ -159,9 +159,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -173,7 +173,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add_demo_stamp'] = isset($data['add_demo_stamp']) ? $data['add_demo_stamp'] : null; $this->container['allow_multiple_attachments'] = isset($data['allow_multiple_attachments']) ? $data['allow_multiple_attachments'] : null; @@ -226,7 +226,7 @@ public function getAddDemoStamp() /** * Sets add_demo_stamp - * @param bool $add_demo_stamp + * @param bool $add_demo_stamp * @return $this */ public function setAddDemoStamp($add_demo_stamp) @@ -247,7 +247,7 @@ public function getAllowMultipleAttachments() /** * Sets allow_multiple_attachments - * @param bool $allow_multiple_attachments + * @param bool $allow_multiple_attachments * @return $this */ public function setAllowMultipleAttachments($allow_multiple_attachments) @@ -268,7 +268,7 @@ public function getBurnDefaultTabData() /** * Sets burn_default_tab_data - * @param bool $burn_default_tab_data + * @param bool $burn_default_tab_data * @return $this */ public function setBurnDefaultTabData($burn_default_tab_data) @@ -289,7 +289,7 @@ public function getConvertPdfFields() /** * Sets convert_pdf_fields - * @param bool $convert_pdf_fields + * @param bool $convert_pdf_fields * @return $this */ public function setConvertPdfFields($convert_pdf_fields) @@ -331,7 +331,7 @@ public function getEnvelopeType() /** * Sets envelope_type - * @param string $envelope_type + * @param string $envelope_type * @return $this */ public function setEnvelopeType($envelope_type) @@ -352,7 +352,7 @@ public function getIncludeSigsBeforeComplete() /** * Sets include_sigs_before_complete - * @param bool $include_sigs_before_complete + * @param bool $include_sigs_before_complete * @return $this */ public function setIncludeSigsBeforeComplete($include_sigs_before_complete) @@ -373,7 +373,7 @@ public function getIsConcatMode() /** * Sets is_concat_mode - * @param bool $is_concat_mode + * @param bool $is_concat_mode * @return $this */ public function setIsConcatMode($is_concat_mode) @@ -394,7 +394,7 @@ public function getIsEnvelopeIdStampingEnabled() /** * Sets is_envelope_id_stamping_enabled - * @param bool $is_envelope_id_stamping_enabled + * @param bool $is_envelope_id_stamping_enabled * @return $this */ public function setIsEnvelopeIdStampingEnabled($is_envelope_id_stamping_enabled) @@ -415,7 +415,7 @@ public function getPdfFormConversionFontScale100() /** * Sets pdf_form_conversion_font_scale100 - * @param bool $pdf_form_conversion_font_scale100 + * @param bool $pdf_form_conversion_font_scale100 * @return $this */ public function setPdfFormConversionFontScale100($pdf_form_conversion_font_scale100) @@ -436,7 +436,7 @@ public function getShouldFlatten() /** * Sets should_flatten - * @param bool $should_flatten + * @param bool $should_flatten * @return $this */ public function setShouldFlatten($should_flatten) @@ -457,7 +457,7 @@ public function getShowEnvelopeChanges() /** * Sets show_envelope_changes - * @param bool $show_envelope_changes + * @param bool $show_envelope_changes * @return $this */ public function setShowEnvelopeChanges($show_envelope_changes) @@ -478,7 +478,7 @@ public function getSignOnline() /** * Sets sign_online - * @param bool $sign_online + * @param bool $sign_online * @return $this */ public function setSignOnline($sign_online) @@ -520,7 +520,7 @@ public function getUserId() /** * Sets user_id - * @param string $user_id + * @param string $user_id * @return $this */ public function setUserId($user_id) diff --git a/src/Model/DisplayApplianceInfo.php b/src/Model/DisplayApplianceInfo.php index 72b01627..4cb46415 100644 --- a/src/Model/DisplayApplianceInfo.php +++ b/src/Model/DisplayApplianceInfo.php @@ -175,7 +175,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { } diff --git a/src/Model/DisplayAppliancePage.php b/src/Model/DisplayAppliancePage.php index 22a15dce..da001c9a 100644 --- a/src/Model/DisplayAppliancePage.php +++ b/src/Model/DisplayAppliancePage.php @@ -139,9 +139,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -153,7 +153,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; $this->container['document_name'] = isset($data['document_name']) ? $data['document_name'] : null; @@ -222,7 +222,7 @@ public function getDocumentName() /** * Sets document_name - * @param string $document_name + * @param string $document_name * @return $this */ public function setDocumentName($document_name) @@ -243,7 +243,7 @@ public function getExternalDocumentId() /** * Sets external_document_id - * @param string $external_document_id + * @param string $external_document_id * @return $this */ public function setExternalDocumentId($external_document_id) @@ -285,7 +285,7 @@ public function getIsFirstPage() /** * Sets is_first_page - * @param bool $is_first_page + * @param bool $is_first_page * @return $this */ public function setIsFirstPage($is_first_page) @@ -306,7 +306,7 @@ public function getPageId() /** * Sets page_id - * @param string $page_id + * @param string $page_id * @return $this */ public function setPageId($page_id) @@ -327,7 +327,7 @@ public function getPageNo() /** * Sets page_no - * @param int $page_no + * @param int $page_no * @return $this */ public function setPageNo($page_no) @@ -348,7 +348,7 @@ public function getPageStatus() /** * Sets page_status - * @param string $page_status + * @param string $page_status * @return $this */ public function setPageStatus($page_status) @@ -369,7 +369,7 @@ public function getPageType() /** * Sets page_type - * @param string $page_type + * @param string $page_type * @return $this */ public function setPageType($page_type) diff --git a/src/Model/DisplayAppliancePdf.php b/src/Model/DisplayAppliancePdf.php index dd18e063..8a0ea1d2 100644 --- a/src/Model/DisplayAppliancePdf.php +++ b/src/Model/DisplayAppliancePdf.php @@ -57,7 +57,7 @@ class DisplayAppliancePdf implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - + ]; /** @@ -66,7 +66,7 @@ class DisplayAppliancePdf implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - + ]; /** @@ -96,7 +96,7 @@ public static function swaggerFormats() * @var string[] */ protected static $attributeMap = [ - + ]; /** @@ -105,7 +105,7 @@ public static function swaggerFormats() * @var string[] */ protected static $setters = [ - + ]; /** @@ -114,7 +114,7 @@ public static function swaggerFormats() * @var string[] */ protected static $getters = [ - + ]; /** @@ -158,9 +158,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -175,7 +175,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { } diff --git a/src/Model/DisplayApplianceRecipient.php b/src/Model/DisplayApplianceRecipient.php index 661e6040..b84430c6 100644 --- a/src/Model/DisplayApplianceRecipient.php +++ b/src/Model/DisplayApplianceRecipient.php @@ -183,9 +183,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cfr_part11'] = isset($data['cfr_part11']) ? $data['cfr_part11'] : null; $this->container['company'] = isset($data['company']) ? $data['company'] : null; @@ -256,7 +256,7 @@ public function getCfrPart11() /** * Sets cfr_part11 - * @param bool $cfr_part11 + * @param bool $cfr_part11 * @return $this */ public function setCfrPart11($cfr_part11) @@ -277,7 +277,7 @@ public function getCompany() /** * Sets company - * @param string $company + * @param string $company * @return $this */ public function setCompany($company) @@ -298,7 +298,7 @@ public function getDigitalSignatureBase64() /** * Sets digital_signature_base64 - * @param string $digital_signature_base64 + * @param string $digital_signature_base64 * @return $this */ public function setDigitalSignatureBase64($digital_signature_base64) @@ -319,7 +319,7 @@ public function getEmail() /** * Sets email - * @param string $email + * @param string $email * @return $this */ public function setEmail($email) @@ -340,7 +340,7 @@ public function getFullName() /** * Sets full_name - * @param string $full_name + * @param string $full_name * @return $this */ public function setFullName($full_name) @@ -361,7 +361,7 @@ public function getInitialsBase64() /** * Sets initials_base64 - * @param string $initials_base64 + * @param string $initials_base64 * @return $this */ public function setInitialsBase64($initials_base64) @@ -382,7 +382,7 @@ public function getInPersonEmail() /** * Sets in_person_email - * @param string $in_person_email + * @param string $in_person_email * @return $this */ public function setInPersonEmail($in_person_email) @@ -403,7 +403,7 @@ public function getIsNotary() /** * Sets is_notary - * @param bool $is_notary + * @param bool $is_notary * @return $this */ public function setIsNotary($is_notary) @@ -424,7 +424,7 @@ public function getNotarySealBase64() /** * Sets notary_seal_base64 - * @param string $notary_seal_base64 + * @param string $notary_seal_base64 * @return $this */ public function setNotarySealBase64($notary_seal_base64) @@ -445,7 +445,7 @@ public function getPhoneNumber() /** * Sets phone_number - * @param string $phone_number + * @param string $phone_number * @return $this */ public function setPhoneNumber($phone_number) @@ -466,7 +466,7 @@ public function getRecipientCompleteCount() /** * Sets recipient_complete_count - * @param int $recipient_complete_count + * @param int $recipient_complete_count * @return $this */ public function setRecipientCompleteCount($recipient_complete_count) @@ -487,7 +487,7 @@ public function getRecipientGuidId() /** * Sets recipient_guid_id - * @param string $recipient_guid_id + * @param string $recipient_guid_id * @return $this */ public function setRecipientGuidId($recipient_guid_id) @@ -529,7 +529,7 @@ public function getRecipientStatus() /** * Sets recipient_status - * @param string $recipient_status + * @param string $recipient_status * @return $this */ public function setRecipientStatus($recipient_status) @@ -550,7 +550,7 @@ public function getRecipientType() /** * Sets recipient_type - * @param string $recipient_type + * @param string $recipient_type * @return $this */ public function setRecipientType($recipient_type) @@ -571,7 +571,7 @@ public function getRowState() /** * Sets row_state - * @param string $row_state + * @param string $row_state * @return $this */ public function setRowState($row_state) @@ -592,7 +592,7 @@ public function getSignatureBase64() /** * Sets signature_base64 - * @param string $signature_base64 + * @param string $signature_base64 * @return $this */ public function setSignatureBase64($signature_base64) @@ -613,7 +613,7 @@ public function getSigned() /** * Sets signed - * @param bool $signed + * @param bool $signed * @return $this */ public function setSigned($signed) @@ -634,7 +634,7 @@ public function getSignerApplyTabs() /** * Sets signer_apply_tabs - * @param bool $signer_apply_tabs + * @param bool $signer_apply_tabs * @return $this */ public function setSignerApplyTabs($signer_apply_tabs) @@ -655,7 +655,7 @@ public function getSignerAttachmentBase64() /** * Sets signer_attachment_base64 - * @param string $signer_attachment_base64 + * @param string $signer_attachment_base64 * @return $this */ public function setSignerAttachmentBase64($signer_attachment_base64) @@ -676,7 +676,7 @@ public function getUserName() /** * Sets user_name - * @param string $user_name + * @param string $user_name * @return $this */ public function setUserName($user_name) diff --git a/src/Model/DisplayApplianceSignerAttachment.php b/src/Model/DisplayApplianceSignerAttachment.php index 19fe9435..9bd6e1e9 100644 --- a/src/Model/DisplayApplianceSignerAttachment.php +++ b/src/Model/DisplayApplianceSignerAttachment.php @@ -57,7 +57,7 @@ class DisplayApplianceSignerAttachment implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - + ]; /** @@ -66,7 +66,7 @@ class DisplayApplianceSignerAttachment implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - + ]; /** @@ -96,7 +96,7 @@ public static function swaggerFormats() * @var string[] */ protected static $attributeMap = [ - + ]; /** @@ -105,7 +105,7 @@ public static function swaggerFormats() * @var string[] */ protected static $setters = [ - + ]; /** @@ -114,7 +114,7 @@ public static function swaggerFormats() * @var string[] */ protected static $getters = [ - + ]; /** @@ -158,9 +158,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -175,7 +175,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { } diff --git a/src/Model/DobInformationInput.php b/src/Model/DobInformationInput.php index a69e6fdf..8d43dfb1 100644 --- a/src/Model/DobInformationInput.php +++ b/src/Model/DobInformationInput.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date_of_birth'] = isset($data['date_of_birth']) ? $data['date_of_birth'] : null; $this->container['display_level_code'] = isset($data['display_level_code']) ? $data['display_level_code'] : null; diff --git a/src/Model/DocGenFormField.php b/src/Model/DocGenFormField.php index d1c83a2e..37a24849 100644 --- a/src/Model/DocGenFormField.php +++ b/src/Model/DocGenFormField.php @@ -220,9 +220,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -237,7 +237,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['connected_object_details'] = isset($data['connected_object_details']) ? $data['connected_object_details'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -291,7 +291,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -315,7 +315,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -339,7 +339,7 @@ public function getFullyQualifiedPath() /** * Sets fully_qualified_path * - * @param ?string $fully_qualified_path + * @param ?string $fully_qualified_path * * @return $this */ @@ -363,7 +363,7 @@ public function getLabel() /** * Sets label * - * @param ?string $label + * @param ?string $label * * @return $this */ @@ -387,7 +387,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -411,7 +411,7 @@ public function getOptions() /** * Sets options * - * @param \DocuSign\eSign\Model\DocGenFormFieldOption[] $options + * @param \DocuSign\eSign\Model\DocGenFormFieldOption[] $options * * @return $this */ @@ -435,7 +435,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ @@ -459,7 +459,7 @@ public function getPredefinedValidation() /** * Sets predefined_validation * - * @param ?string $predefined_validation + * @param ?string $predefined_validation * * @return $this */ @@ -507,7 +507,7 @@ public function getRowValues() /** * Sets row_values * - * @param \DocuSign\eSign\Model\DocGenFormFieldRowValue[] $row_values + * @param \DocuSign\eSign\Model\DocGenFormFieldRowValue[] $row_values * * @return $this */ @@ -531,7 +531,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ @@ -555,7 +555,7 @@ public function getValidation() /** * Sets validation * - * @param \DocuSign\eSign\Model\DocGenFormFieldValidation $validation + * @param \DocuSign\eSign\Model\DocGenFormFieldValidation $validation * * @return $this */ diff --git a/src/Model/DocGenFormFieldOption.php b/src/Model/DocGenFormFieldOption.php index e2ab2d2b..2b048111 100644 --- a/src/Model/DocGenFormFieldOption.php +++ b/src/Model/DocGenFormFieldOption.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['label'] = isset($data['label']) ? $data['label'] : null; @@ -237,7 +237,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -261,7 +261,7 @@ public function getLabel() /** * Sets label * - * @param ?string $label + * @param ?string $label * * @return $this */ @@ -285,7 +285,7 @@ public function getSelected() /** * Sets selected * - * @param ?string $selected + * @param ?string $selected * * @return $this */ diff --git a/src/Model/DocGenFormFieldRequest.php b/src/Model/DocGenFormFieldRequest.php index 69d0327b..58d03d65 100644 --- a/src/Model/DocGenFormFieldRequest.php +++ b/src/Model/DocGenFormFieldRequest.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_gen_form_fields'] = isset($data['doc_gen_form_fields']) ? $data['doc_gen_form_fields'] : null; } diff --git a/src/Model/DocGenFormFieldResponse.php b/src/Model/DocGenFormFieldResponse.php index 52576b39..80ec1997 100644 --- a/src/Model/DocGenFormFieldResponse.php +++ b/src/Model/DocGenFormFieldResponse.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_gen_form_fields'] = isset($data['doc_gen_form_fields']) ? $data['doc_gen_form_fields'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -225,7 +225,7 @@ public function getDocGenFormFields() /** * Sets doc_gen_form_fields * - * @param \DocuSign\eSign\Model\DocGenFormFields[] $doc_gen_form_fields + * @param \DocuSign\eSign\Model\DocGenFormFields[] $doc_gen_form_fields * * @return $this */ diff --git a/src/Model/DocGenFormFieldRowValue.php b/src/Model/DocGenFormFieldRowValue.php index 714e2575..8001b195 100644 --- a/src/Model/DocGenFormFieldRowValue.php +++ b/src/Model/DocGenFormFieldRowValue.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_gen_form_field_list'] = isset($data['doc_gen_form_field_list']) ? $data['doc_gen_form_field_list'] : null; } @@ -219,7 +219,7 @@ public function getDocGenFormFieldList() /** * Sets doc_gen_form_field_list * - * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_field_list + * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_field_list * * @return $this */ diff --git a/src/Model/DocGenFormFieldValidation.php b/src/Model/DocGenFormFieldValidation.php index 69d0b772..49996c5e 100644 --- a/src/Model/DocGenFormFieldValidation.php +++ b/src/Model/DocGenFormFieldValidation.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_message'] = isset($data['error_message']) ? $data['error_message'] : null; $this->container['expression'] = isset($data['expression']) ? $data['expression'] : null; @@ -225,7 +225,7 @@ public function getErrorMessage() /** * Sets error_message * - * @param ?string $error_message + * @param ?string $error_message * * @return $this */ @@ -249,7 +249,7 @@ public function getExpression() /** * Sets expression * - * @param ?string $expression + * @param ?string $expression * * @return $this */ diff --git a/src/Model/DocGenFormFields.php b/src/Model/DocGenFormFields.php index 09f48411..73dc848a 100644 --- a/src/Model/DocGenFormFields.php +++ b/src/Model/DocGenFormFields.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['doc_gen_document_status'] = isset($data['doc_gen_document_status']) ? $data['doc_gen_document_status'] : null; $this->container['doc_gen_errors'] = isset($data['doc_gen_errors']) ? $data['doc_gen_errors'] : null; diff --git a/src/Model/DocGenSyntaxError.php b/src/Model/DocGenSyntaxError.php index 0b873194..c85982f5 100644 --- a/src/Model/DocGenSyntaxError.php +++ b/src/Model/DocGenSyntaxError.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_code'] = isset($data['error_code']) ? $data['error_code'] : null; $this->container['message'] = isset($data['message']) ? $data['message'] : null; @@ -231,7 +231,7 @@ public function getErrorCode() /** * Sets error_code * - * @param ?string $error_code + * @param ?string $error_code * * @return $this */ @@ -255,7 +255,7 @@ public function getMessage() /** * Sets message * - * @param ?string $message + * @param ?string $message * * @return $this */ @@ -279,7 +279,7 @@ public function getTagIdentifier() /** * Sets tag_identifier * - * @param ?string $tag_identifier + * @param ?string $tag_identifier * * @return $this */ diff --git a/src/Model/Document.php b/src/Model/Document.php index 683f816a..d871674e 100644 --- a/src/Model/Document.php +++ b/src/Model/Document.php @@ -306,9 +306,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -323,7 +323,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['apply_anchor_tabs'] = isset($data['apply_anchor_tabs']) ? $data['apply_anchor_tabs'] : null; $this->container['assign_tabs_to_recipient_id'] = isset($data['assign_tabs_to_recipient_id']) ? $data['assign_tabs_to_recipient_id'] : null; @@ -418,7 +418,7 @@ public function getAssignTabsToRecipientId() /** * Sets assign_tabs_to_recipient_id * - * @param ?string $assign_tabs_to_recipient_id + * @param ?string $assign_tabs_to_recipient_id * * @return $this */ @@ -466,7 +466,7 @@ public function getDisplay() /** * Sets display * - * @param ?string $display + * @param ?string $display * * @return $this */ @@ -490,7 +490,7 @@ public function getDocGenDocumentStatus() /** * Sets doc_gen_document_status * - * @param ?string $doc_gen_document_status + * @param ?string $doc_gen_document_status * * @return $this */ @@ -514,7 +514,7 @@ public function getDocGenFormFields() /** * Sets doc_gen_form_fields * - * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_fields + * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_fields * * @return $this */ @@ -562,7 +562,7 @@ public function getDocumentFields() /** * Sets document_fields * - * @param \DocuSign\eSign\Model\NameValue[] $document_fields + * @param \DocuSign\eSign\Model\NameValue[] $document_fields * * @return $this */ @@ -610,7 +610,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -682,7 +682,7 @@ public function getFileFormatHint() /** * Sets file_format_hint * - * @param ?string $file_format_hint + * @param ?string $file_format_hint * * @return $this */ @@ -730,7 +730,7 @@ public function getIncludeInDownload() /** * Sets include_in_download * - * @param ?string $include_in_download + * @param ?string $include_in_download * * @return $this */ @@ -754,7 +754,7 @@ public function getIsDocGenDocument() /** * Sets is_doc_gen_document * - * @param ?string $is_doc_gen_document + * @param ?string $is_doc_gen_document * * @return $this */ @@ -802,7 +802,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -826,7 +826,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ @@ -850,7 +850,7 @@ public function getPages() /** * Sets pages * - * @param ?string $pages + * @param ?string $pages * * @return $this */ @@ -874,7 +874,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -898,7 +898,7 @@ public function getPdfFormFieldOption() /** * Sets pdf_form_field_option * - * @param ?string $pdf_form_field_option + * @param ?string $pdf_form_field_option * * @return $this */ @@ -946,7 +946,7 @@ public function getSignerMustAcknowledge() /** * Sets signer_must_acknowledge * - * @param ?string $signer_must_acknowledge + * @param ?string $signer_must_acknowledge * * @return $this */ @@ -970,7 +970,7 @@ public function getSignerMustAcknowledgeUseAccountDefault() /** * Sets signer_must_acknowledge_use_account_default * - * @param ?bool $signer_must_acknowledge_use_account_default + * @param ?bool $signer_must_acknowledge_use_account_default * * @return $this */ @@ -1090,7 +1090,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/DocumentFieldsInformation.php b/src/Model/DocumentFieldsInformation.php index 65357c17..c39a31cc 100644 --- a/src/Model/DocumentFieldsInformation.php +++ b/src/Model/DocumentFieldsInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_fields'] = isset($data['document_fields']) ? $data['document_fields'] : null; } diff --git a/src/Model/DocumentHtmlCollapsibleDisplaySettings.php b/src/Model/DocumentHtmlCollapsibleDisplaySettings.php index e6fd5630..296097c5 100644 --- a/src/Model/DocumentHtmlCollapsibleDisplaySettings.php +++ b/src/Model/DocumentHtmlCollapsibleDisplaySettings.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['arrow_closed'] = isset($data['arrow_closed']) ? $data['arrow_closed'] : null; $this->container['arrow_color'] = isset($data['arrow_color']) ? $data['arrow_color'] : null; @@ -274,7 +274,7 @@ public function getArrowClosed() /** * Sets arrow_closed * - * @param ?string $arrow_closed + * @param ?string $arrow_closed * * @return $this */ @@ -298,7 +298,7 @@ public function getArrowColor() /** * Sets arrow_color * - * @param ?string $arrow_color + * @param ?string $arrow_color * * @return $this */ @@ -322,7 +322,7 @@ public function getArrowLocation() /** * Sets arrow_location * - * @param ?string $arrow_location + * @param ?string $arrow_location * * @return $this */ @@ -346,7 +346,7 @@ public function getArrowOpen() /** * Sets arrow_open * - * @param ?string $arrow_open + * @param ?string $arrow_open * * @return $this */ @@ -370,7 +370,7 @@ public function getArrowSize() /** * Sets arrow_size * - * @param ?string $arrow_size + * @param ?string $arrow_size * * @return $this */ @@ -394,7 +394,7 @@ public function getArrowStyle() /** * Sets arrow_style * - * @param ?string $arrow_style + * @param ?string $arrow_style * * @return $this */ @@ -418,7 +418,7 @@ public function getContainerStyle() /** * Sets container_style * - * @param ?string $container_style + * @param ?string $container_style * * @return $this */ @@ -442,7 +442,7 @@ public function getLabelStyle() /** * Sets label_style * - * @param ?string $label_style + * @param ?string $label_style * * @return $this */ @@ -466,7 +466,7 @@ public function getOnlyArrowIsClickable() /** * Sets only_arrow_is_clickable * - * @param ?bool $only_arrow_is_clickable + * @param ?bool $only_arrow_is_clickable * * @return $this */ @@ -490,7 +490,7 @@ public function getOuterLabelAndArrowStyle() /** * Sets outer_label_and_arrow_style * - * @param ?string $outer_label_and_arrow_style + * @param ?string $outer_label_and_arrow_style * * @return $this */ diff --git a/src/Model/DocumentHtmlDefinition.php b/src/Model/DocumentHtmlDefinition.php index 50bf3fc5..32dfd753 100644 --- a/src/Model/DocumentHtmlDefinition.php +++ b/src/Model/DocumentHtmlDefinition.php @@ -211,9 +211,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -228,7 +228,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['display_anchor_prefix'] = isset($data['display_anchor_prefix']) ? $data['display_anchor_prefix'] : null; $this->container['display_anchors'] = isset($data['display_anchors']) ? $data['display_anchors'] : null; @@ -280,7 +280,7 @@ public function getDisplayAnchorPrefix() /** * Sets display_anchor_prefix * - * @param ?string $display_anchor_prefix + * @param ?string $display_anchor_prefix * * @return $this */ @@ -304,7 +304,7 @@ public function getDisplayAnchors() /** * Sets display_anchors * - * @param \DocuSign\eSign\Model\DocumentHtmlDisplayAnchor[] $display_anchors + * @param \DocuSign\eSign\Model\DocumentHtmlDisplayAnchor[] $display_anchors * * @return $this */ @@ -328,7 +328,7 @@ public function getDisplayOrder() /** * Sets display_order * - * @param ?string $display_order + * @param ?string $display_order * * @return $this */ @@ -352,7 +352,7 @@ public function getDisplayPageNumber() /** * Sets display_page_number * - * @param ?string $display_page_number + * @param ?string $display_page_number * * @return $this */ @@ -376,7 +376,7 @@ public function getDocumentGuid() /** * Sets document_guid * - * @param ?string $document_guid + * @param ?string $document_guid * * @return $this */ @@ -424,7 +424,7 @@ public function getHeaderLabel() /** * Sets header_label * - * @param ?string $header_label + * @param ?string $header_label * * @return $this */ @@ -448,7 +448,7 @@ public function getMaxScreenWidth() /** * Sets max_screen_width * - * @param ?string $max_screen_width + * @param ?string $max_screen_width * * @return $this */ @@ -472,7 +472,7 @@ public function getRemoveEmptyTags() /** * Sets remove_empty_tags * - * @param ?string $remove_empty_tags + * @param ?string $remove_empty_tags * * @return $this */ @@ -496,7 +496,7 @@ public function getShowMobileOptimizedToggle() /** * Sets show_mobile_optimized_toggle * - * @param ?string $show_mobile_optimized_toggle + * @param ?string $show_mobile_optimized_toggle * * @return $this */ @@ -520,7 +520,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ diff --git a/src/Model/DocumentHtmlDefinitionOriginal.php b/src/Model/DocumentHtmlDefinitionOriginal.php index 5298a016..3fcbdc63 100644 --- a/src/Model/DocumentHtmlDefinitionOriginal.php +++ b/src/Model/DocumentHtmlDefinitionOriginal.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; $this->container['document_id_guid'] = isset($data['document_id_guid']) ? $data['document_id_guid'] : null; diff --git a/src/Model/DocumentHtmlDefinitionOriginals.php b/src/Model/DocumentHtmlDefinitionOriginals.php index af6a02a9..6d3859c7 100644 --- a/src/Model/DocumentHtmlDefinitionOriginals.php +++ b/src/Model/DocumentHtmlDefinitionOriginals.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['html_definitions'] = isset($data['html_definitions']) ? $data['html_definitions'] : null; } @@ -219,7 +219,7 @@ public function getHtmlDefinitions() /** * Sets html_definitions * - * @param \DocuSign\eSign\Model\DocumentHtmlDefinitionOriginal[] $html_definitions + * @param \DocuSign\eSign\Model\DocumentHtmlDefinitionOriginal[] $html_definitions * * @return $this */ diff --git a/src/Model/DocumentHtmlDefinitions.php b/src/Model/DocumentHtmlDefinitions.php index f3f2912f..316df5b8 100644 --- a/src/Model/DocumentHtmlDefinitions.php +++ b/src/Model/DocumentHtmlDefinitions.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['html_definitions'] = isset($data['html_definitions']) ? $data['html_definitions'] : null; } @@ -219,7 +219,7 @@ public function getHtmlDefinitions() /** * Sets html_definitions * - * @param ?string[] $html_definitions + * @param ?string[] $html_definitions * * @return $this */ diff --git a/src/Model/DocumentHtmlDisplayAnchor.php b/src/Model/DocumentHtmlDisplayAnchor.php index 11050a8c..a06e4cdc 100644 --- a/src/Model/DocumentHtmlDisplayAnchor.php +++ b/src/Model/DocumentHtmlDisplayAnchor.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['case_sensitive'] = isset($data['case_sensitive']) ? $data['case_sensitive'] : null; $this->container['display_settings'] = isset($data['display_settings']) ? $data['display_settings'] : null; @@ -249,7 +249,7 @@ public function getCaseSensitive() /** * Sets case_sensitive * - * @param ?bool $case_sensitive + * @param ?bool $case_sensitive * * @return $this */ @@ -297,7 +297,7 @@ public function getEndAnchor() /** * Sets end_anchor * - * @param ?string $end_anchor + * @param ?string $end_anchor * * @return $this */ @@ -321,7 +321,7 @@ public function getRemoveEndAnchor() /** * Sets remove_end_anchor * - * @param ?bool $remove_end_anchor + * @param ?bool $remove_end_anchor * * @return $this */ @@ -345,7 +345,7 @@ public function getRemoveStartAnchor() /** * Sets remove_start_anchor * - * @param ?bool $remove_start_anchor + * @param ?bool $remove_start_anchor * * @return $this */ @@ -369,7 +369,7 @@ public function getStartAnchor() /** * Sets start_anchor * - * @param ?string $start_anchor + * @param ?string $start_anchor * * @return $this */ diff --git a/src/Model/DocumentHtmlDisplaySettings.php b/src/Model/DocumentHtmlDisplaySettings.php index f6498c67..469a4d18 100644 --- a/src/Model/DocumentHtmlDisplaySettings.php +++ b/src/Model/DocumentHtmlDisplaySettings.php @@ -215,9 +215,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -232,7 +232,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cell_style'] = isset($data['cell_style']) ? $data['cell_style'] : null; $this->container['collapsible_settings'] = isset($data['collapsible_settings']) ? $data['collapsible_settings'] : null; @@ -285,7 +285,7 @@ public function getCellStyle() /** * Sets cell_style * - * @param ?string $cell_style + * @param ?string $cell_style * * @return $this */ @@ -333,7 +333,7 @@ public function getDisplay() /** * Sets display * - * @param ?string $display + * @param ?string $display * * @return $this */ @@ -357,7 +357,7 @@ public function getDisplayLabel() /** * Sets display_label * - * @param ?string $display_label + * @param ?string $display_label * * @return $this */ @@ -381,7 +381,7 @@ public function getDisplayOrder() /** * Sets display_order * - * @param ?int $display_order + * @param ?int $display_order * * @return $this */ @@ -405,7 +405,7 @@ public function getDisplayPageNumber() /** * Sets display_page_number * - * @param ?int $display_page_number + * @param ?int $display_page_number * * @return $this */ @@ -429,7 +429,7 @@ public function getHideLabelWhenOpened() /** * Sets hide_label_when_opened * - * @param ?bool $hide_label_when_opened + * @param ?bool $hide_label_when_opened * * @return $this */ @@ -453,7 +453,7 @@ public function getInlineOuterStyle() /** * Sets inline_outer_style * - * @param ?string $inline_outer_style + * @param ?string $inline_outer_style * * @return $this */ @@ -477,7 +477,7 @@ public function getLabelWhenOpened() /** * Sets label_when_opened * - * @param ?string $label_when_opened + * @param ?string $label_when_opened * * @return $this */ @@ -501,7 +501,7 @@ public function getPreLabel() /** * Sets pre_label * - * @param ?string $pre_label + * @param ?string $pre_label * * @return $this */ @@ -525,7 +525,7 @@ public function getScrollToTopWhenOpened() /** * Sets scroll_to_top_when_opened * - * @param ?bool $scroll_to_top_when_opened + * @param ?bool $scroll_to_top_when_opened * * @return $this */ @@ -549,7 +549,7 @@ public function getTableStyle() /** * Sets table_style * - * @param ?string $table_style + * @param ?string $table_style * * @return $this */ diff --git a/src/Model/DocumentSecurityStore.php b/src/Model/DocumentSecurityStore.php index 31ffe05e..d7041b49 100644 --- a/src/Model/DocumentSecurityStore.php +++ b/src/Model/DocumentSecurityStore.php @@ -168,9 +168,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['certificates'] = isset($data['certificates']) ? $data['certificates'] : null; $this->container['crls'] = isset($data['crls']) ? $data['crls'] : null; @@ -229,7 +229,7 @@ public function getCertificates() /** * Sets certificates * - * @param ?string[] $certificates + * @param ?string[] $certificates * * @return $this */ @@ -253,7 +253,7 @@ public function getCrls() /** * Sets crls * - * @param ?string[] $crls + * @param ?string[] $crls * * @return $this */ @@ -277,7 +277,7 @@ public function getOcsps() /** * Sets ocsps * - * @param ?string[] $ocsps + * @param ?string[] $ocsps * * @return $this */ diff --git a/src/Model/DocumentTemplate.php b/src/Model/DocumentTemplate.php index f07f6542..d1f1643f 100644 --- a/src/Model/DocumentTemplate.php +++ b/src/Model/DocumentTemplate.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_end_page'] = isset($data['document_end_page']) ? $data['document_end_page'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; @@ -243,7 +243,7 @@ public function getDocumentEndPage() /** * Sets document_end_page * - * @param ?string $document_end_page + * @param ?string $document_end_page * * @return $this */ @@ -291,7 +291,7 @@ public function getDocumentStartPage() /** * Sets document_start_page * - * @param ?string $document_start_page + * @param ?string $document_start_page * * @return $this */ diff --git a/src/Model/DocumentTemplateList.php b/src/Model/DocumentTemplateList.php index a4bd9483..75641276 100644 --- a/src/Model/DocumentTemplateList.php +++ b/src/Model/DocumentTemplateList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_templates'] = isset($data['document_templates']) ? $data['document_templates'] : null; } @@ -219,7 +219,7 @@ public function getDocumentTemplates() /** * Sets document_templates * - * @param \DocuSign\eSign\Model\DocumentTemplate[] $document_templates + * @param \DocuSign\eSign\Model\DocumentTemplate[] $document_templates * * @return $this */ diff --git a/src/Model/DocumentUpdateInfo.php b/src/Model/DocumentUpdateInfo.php index 36e24cd9..9557f856 100644 --- a/src/Model/DocumentUpdateInfo.php +++ b/src/Model/DocumentUpdateInfo.php @@ -188,9 +188,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['data'] = isset($data['data']) ? $data['data'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; @@ -253,7 +253,7 @@ public function getData() /** * Sets data * - * @param ?string $data + * @param ?string $data * * @return $this */ @@ -325,7 +325,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -349,7 +349,7 @@ public function getReturnFormat() /** * Sets return_format * - * @param ?string $return_format + * @param ?string $return_format * * @return $this */ @@ -373,7 +373,7 @@ public function getSignatureDataInfos() /** * Sets signature_data_infos * - * @param \DocuSign\eSign\Model\SignatureDataInfo[] $signature_data_infos + * @param \DocuSign\eSign\Model\SignatureDataInfo[] $signature_data_infos * * @return $this */ diff --git a/src/Model/DocumentVisibility.php b/src/Model/DocumentVisibility.php index 39094b96..4aad7524 100644 --- a/src/Model/DocumentVisibility.php +++ b/src/Model/DocumentVisibility.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -316,7 +316,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ @@ -340,7 +340,7 @@ public function getVisible() /** * Sets visible * - * @param ?string $visible + * @param ?string $visible * * @return $this */ diff --git a/src/Model/DocumentVisibilityList.php b/src/Model/DocumentVisibilityList.php index d2433b22..0e3b7ace 100644 --- a/src/Model/DocumentVisibilityList.php +++ b/src/Model/DocumentVisibilityList.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_visibility'] = isset($data['document_visibility']) ? $data['document_visibility'] : null; } @@ -220,7 +220,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ diff --git a/src/Model/DowngradRequestBillingInfoResponse.php b/src/Model/DowngradRequestBillingInfoResponse.php index b353aa6a..5ded2e7b 100644 --- a/src/Model/DowngradRequestBillingInfoResponse.php +++ b/src/Model/DowngradRequestBillingInfoResponse.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['downgrade_plan_information'] = isset($data['downgrade_plan_information']) ? $data['downgrade_plan_information'] : null; $this->container['payment_method'] = isset($data['payment_method']) ? $data['payment_method'] : null; @@ -225,7 +225,7 @@ public function getDowngradePlanInformation() /** * Sets downgrade_plan_information * - * @param \DocuSign\eSign\Model\DowngradePlanUpdateResponse $downgrade_plan_information + * @param \DocuSign\eSign\Model\DowngradePlanUpdateResponse $downgrade_plan_information * * @return $this */ @@ -249,7 +249,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param ?string $payment_method + * @param ?string $payment_method * * @return $this */ diff --git a/src/Model/DowngradeBillingPlanInformation.php b/src/Model/DowngradeBillingPlanInformation.php index 3e9adc8d..124b4e75 100644 --- a/src/Model/DowngradeBillingPlanInformation.php +++ b/src/Model/DowngradeBillingPlanInformation.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['downgrade_event_type'] = isset($data['downgrade_event_type']) ? $data['downgrade_event_type'] : null; $this->container['plan_information'] = isset($data['plan_information']) ? $data['plan_information'] : null; @@ -249,7 +249,7 @@ public function getDowngradeEventType() /** * Sets downgrade_event_type * - * @param ?string $downgrade_event_type + * @param ?string $downgrade_event_type * * @return $this */ @@ -297,7 +297,7 @@ public function getPromoCode() /** * Sets promo_code * - * @param ?string $promo_code + * @param ?string $promo_code * * @return $this */ @@ -321,7 +321,7 @@ public function getSaleDiscount() /** * Sets sale_discount * - * @param ?string $sale_discount + * @param ?string $sale_discount * * @return $this */ @@ -345,7 +345,7 @@ public function getSaleDiscountPeriods() /** * Sets sale_discount_periods * - * @param ?string $sale_discount_periods + * @param ?string $sale_discount_periods * * @return $this */ @@ -369,7 +369,7 @@ public function getSaleDiscountType() /** * Sets sale_discount_type * - * @param ?string $sale_discount_type + * @param ?string $sale_discount_type * * @return $this */ diff --git a/src/Model/DowngradePlanUpdateResponse.php b/src/Model/DowngradePlanUpdateResponse.php index adabab15..0674cdff 100644 --- a/src/Model/DowngradePlanUpdateResponse.php +++ b/src/Model/DowngradePlanUpdateResponse.php @@ -220,9 +220,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -237,7 +237,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_payment_method'] = isset($data['account_payment_method']) ? $data['account_payment_method'] : null; $this->container['discount_applied'] = isset($data['discount_applied']) ? $data['discount_applied'] : null; @@ -291,7 +291,7 @@ public function getAccountPaymentMethod() /** * Sets account_payment_method * - * @param ?string $account_payment_method + * @param ?string $account_payment_method * * @return $this */ @@ -315,7 +315,7 @@ public function getDiscountApplied() /** * Sets discount_applied * - * @param ?string $discount_applied + * @param ?string $discount_applied * * @return $this */ @@ -339,7 +339,7 @@ public function getDowngradeEffectiveDate() /** * Sets downgrade_effective_date * - * @param ?string $downgrade_effective_date + * @param ?string $downgrade_effective_date * * @return $this */ @@ -363,7 +363,7 @@ public function getDowngradePaymentCycle() /** * Sets downgrade_payment_cycle * - * @param ?string $downgrade_payment_cycle + * @param ?string $downgrade_payment_cycle * * @return $this */ @@ -387,7 +387,7 @@ public function getDowngradePlanId() /** * Sets downgrade_plan_id * - * @param ?string $downgrade_plan_id + * @param ?string $downgrade_plan_id * * @return $this */ @@ -411,7 +411,7 @@ public function getDowngradePlanName() /** * Sets downgrade_plan_name * - * @param ?string $downgrade_plan_name + * @param ?string $downgrade_plan_name * * @return $this */ @@ -435,7 +435,7 @@ public function getDowngradeRequestStatus() /** * Sets downgrade_request_status * - * @param ?string $downgrade_request_status + * @param ?string $downgrade_request_status * * @return $this */ @@ -459,7 +459,7 @@ public function getMessage() /** * Sets message * - * @param ?string $message + * @param ?string $message * * @return $this */ @@ -483,7 +483,7 @@ public function getProductId() /** * Sets product_id * - * @param ?string $product_id + * @param ?string $product_id * * @return $this */ @@ -507,7 +507,7 @@ public function getPromoCode() /** * Sets promo_code * - * @param ?string $promo_code + * @param ?string $promo_code * * @return $this */ @@ -531,7 +531,7 @@ public function getSaleDiscount() /** * Sets sale_discount * - * @param ?string $sale_discount + * @param ?string $sale_discount * * @return $this */ @@ -555,7 +555,7 @@ public function getSaleDiscountPeriods() /** * Sets sale_discount_periods * - * @param ?string $sale_discount_periods + * @param ?string $sale_discount_periods * * @return $this */ @@ -579,7 +579,7 @@ public function getSaleDiscountType() /** * Sets sale_discount_type * - * @param ?string $sale_discount_type + * @param ?string $sale_discount_type * * @return $this */ diff --git a/src/Model/DowngradeRequestInformation.php b/src/Model/DowngradeRequestInformation.php index cdb75111..fefab046 100644 --- a/src/Model/DowngradeRequestInformation.php +++ b/src/Model/DowngradeRequestInformation.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['downgrade_request_creation'] = isset($data['downgrade_request_creation']) ? $data['downgrade_request_creation'] : null; $this->container['downgrade_request_product_id'] = isset($data['downgrade_request_product_id']) ? $data['downgrade_request_product_id'] : null; @@ -231,7 +231,7 @@ public function getDowngradeRequestCreation() /** * Sets downgrade_request_creation * - * @param ?string $downgrade_request_creation + * @param ?string $downgrade_request_creation * * @return $this */ @@ -255,7 +255,7 @@ public function getDowngradeRequestProductId() /** * Sets downgrade_request_product_id * - * @param ?string $downgrade_request_product_id + * @param ?string $downgrade_request_product_id * * @return $this */ @@ -279,7 +279,7 @@ public function getDowngradeRequestStatus() /** * Sets downgrade_request_status * - * @param ?string $downgrade_request_status + * @param ?string $downgrade_request_status * * @return $this */ diff --git a/src/Model/Draw.php b/src/Model/Draw.php index 4fe8939d..a053e414 100644 --- a/src/Model/Draw.php +++ b/src/Model/Draw.php @@ -586,9 +586,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -603,7 +603,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -730,7 +730,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -754,7 +754,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -778,7 +778,7 @@ public function getAllowSignerUpload() /** * Sets allow_signer_upload * - * @param ?string $allow_signer_upload + * @param ?string $allow_signer_upload * * @return $this */ @@ -802,7 +802,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1090,7 +1090,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1282,7 +1282,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1306,7 +1306,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1426,7 +1426,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1570,7 +1570,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1594,7 +1594,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1642,7 +1642,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1690,7 +1690,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1858,7 +1858,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1954,7 +1954,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2146,7 +2146,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2218,7 +2218,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2242,7 +2242,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2362,7 +2362,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2410,7 +2410,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2554,7 +2554,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2602,7 +2602,7 @@ public function getUseBackgroundAsCanvas() /** * Sets use_background_as_canvas * - * @param ?string $use_background_as_canvas + * @param ?string $use_background_as_canvas * * @return $this */ @@ -2626,7 +2626,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/ENoteConfiguration.php b/src/Model/ENoteConfiguration.php index 17fcd36f..e45a1c11 100644 --- a/src/Model/ENoteConfiguration.php +++ b/src/Model/ENoteConfiguration.php @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_key'] = isset($data['api_key']) ? $data['api_key'] : null; $this->container['connect_configured'] = isset($data['connect_configured']) ? $data['connect_configured'] : null; diff --git a/src/Model/Editor.php b/src/Model/Editor.php index cd757677..f6269826 100644 --- a/src/Model/Editor.php +++ b/src/Model/Editor.php @@ -536,9 +536,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -553,7 +553,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -742,7 +742,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -766,7 +766,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -790,7 +790,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -814,7 +814,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -862,7 +862,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -886,7 +886,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1054,7 +1054,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1078,7 +1078,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1102,7 +1102,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1126,7 +1126,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1222,7 +1222,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1390,7 +1390,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1558,7 +1558,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -1606,7 +1606,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1630,7 +1630,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1798,7 +1798,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -1870,7 +1870,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -1918,7 +1918,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1942,7 +1942,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2326,7 +2326,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2446,7 +2446,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2470,7 +2470,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/Email.php b/src/Model/Email.php index e0241985..4cca54c7 100644 --- a/src/Model/Email.php +++ b/src/Model/Email.php @@ -766,9 +766,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -783,7 +783,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -946,7 +946,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -970,7 +970,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -994,7 +994,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1282,7 +1282,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1522,7 +1522,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1546,7 +1546,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1714,7 +1714,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1906,7 +1906,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -2074,7 +2074,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2122,7 +2122,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2170,7 +2170,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2458,7 +2458,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2482,7 +2482,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2650,7 +2650,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2962,7 +2962,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -3034,7 +3034,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -3106,7 +3106,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -3130,7 +3130,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3274,7 +3274,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3322,7 +3322,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3466,7 +3466,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3706,7 +3706,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/EmailAddress.php b/src/Model/EmailAddress.php index 296b06ab..af2c3bee 100644 --- a/src/Model/EmailAddress.php +++ b/src/Model/EmailAddress.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1366,7 +1366,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1390,7 +1390,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1510,7 +1510,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1654,7 +1654,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1822,7 +1822,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1870,7 +1870,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2110,7 +2110,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2134,7 +2134,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2254,7 +2254,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2446,7 +2446,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2590,7 +2590,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/EmailSettings.php b/src/Model/EmailSettings.php index ae0abae5..d8b26ffe 100644 --- a/src/Model/EmailSettings.php +++ b/src/Model/EmailSettings.php @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bcc_email_addresses'] = isset($data['bcc_email_addresses']) ? $data['bcc_email_addresses'] : null; $this->container['reply_email_address_override'] = isset($data['reply_email_address_override']) ? $data['reply_email_address_override'] : null; diff --git a/src/Model/Envelope.php b/src/Model/Envelope.php index ce2954f2..e39ea26d 100644 --- a/src/Model/Envelope.php +++ b/src/Model/Envelope.php @@ -555,9 +555,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -572,7 +572,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_control_list_base64'] = isset($data['access_control_list_base64']) ? $data['access_control_list_base64'] : null; $this->container['allow_comments'] = isset($data['allow_comments']) ? $data['allow_comments'] : null; @@ -693,7 +693,7 @@ public function getAccessControlListBase64() /** * Sets access_control_list_base64 * - * @param ?string $access_control_list_base64 + * @param ?string $access_control_list_base64 * * @return $this */ @@ -717,7 +717,7 @@ public function getAllowComments() /** * Sets allow_comments * - * @param ?string $allow_comments + * @param ?string $allow_comments * * @return $this */ @@ -789,7 +789,7 @@ public function getAllowViewHistory() /** * Sets allow_view_history * - * @param ?string $allow_view_history + * @param ?string $allow_view_history * * @return $this */ @@ -813,7 +813,7 @@ public function getAnySigner() /** * Sets any_signer * - * @param ?string $any_signer + * @param ?string $any_signer * * @return $this */ @@ -861,7 +861,7 @@ public function getAttachmentsUri() /** * Sets attachments_uri * - * @param ?string $attachments_uri + * @param ?string $attachments_uri * * @return $this */ @@ -909,7 +909,7 @@ public function getAuthoritativeCopyDefault() /** * Sets authoritative_copy_default * - * @param ?string $authoritative_copy_default + * @param ?string $authoritative_copy_default * * @return $this */ @@ -933,7 +933,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -957,7 +957,7 @@ public function getBrandId() /** * Sets brand_id * - * @param ?string $brand_id + * @param ?string $brand_id * * @return $this */ @@ -981,7 +981,7 @@ public function getBrandLock() /** * Sets brand_lock * - * @param ?string $brand_lock + * @param ?string $brand_lock * * @return $this */ @@ -1005,7 +1005,7 @@ public function getBurnDefaultTabData() /** * Sets burn_default_tab_data * - * @param ?string $burn_default_tab_data + * @param ?string $burn_default_tab_data * * @return $this */ @@ -1077,7 +1077,7 @@ public function getCopyRecipientData() /** * Sets copy_recipient_data * - * @param ?string $copy_recipient_data + * @param ?string $copy_recipient_data * * @return $this */ @@ -1245,7 +1245,7 @@ public function getDisableResponsiveDocument() /** * Sets disable_responsive_document * - * @param ?string $disable_responsive_document + * @param ?string $disable_responsive_document * * @return $this */ @@ -1269,7 +1269,7 @@ public function getDocumentBase64() /** * Sets document_base64 * - * @param ?string $document_base64 + * @param ?string $document_base64 * * @return $this */ @@ -1293,7 +1293,7 @@ public function getDocumentsCombinedUri() /** * Sets documents_combined_uri * - * @param ?string $documents_combined_uri + * @param ?string $documents_combined_uri * * @return $this */ @@ -1461,7 +1461,7 @@ public function getEnvelopeAttachments() /** * Sets envelope_attachments * - * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments + * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments * * @return $this */ @@ -1485,7 +1485,7 @@ public function getEnvelopeCustomMetadata() /** * Sets envelope_custom_metadata * - * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata + * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata * * @return $this */ @@ -1509,7 +1509,7 @@ public function getEnvelopeDocuments() /** * Sets envelope_documents * - * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents + * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents * * @return $this */ @@ -1581,7 +1581,7 @@ public function getEnvelopeLocation() /** * Sets envelope_location * - * @param ?string $envelope_location + * @param ?string $envelope_location * * @return $this */ @@ -1653,7 +1653,7 @@ public function getExpireAfter() /** * Sets expire_after * - * @param ?string $expire_after + * @param ?string $expire_after * * @return $this */ @@ -1677,7 +1677,7 @@ public function getExpireDateTime() /** * Sets expire_date_time * - * @param ?string $expire_date_time + * @param ?string $expire_date_time * * @return $this */ @@ -1701,7 +1701,7 @@ public function getExpireEnabled() /** * Sets expire_enabled * - * @param ?string $expire_enabled + * @param ?string $expire_enabled * * @return $this */ @@ -1725,7 +1725,7 @@ public function getExternalEnvelopeId() /** * Sets external_envelope_id * - * @param ?string $external_envelope_id + * @param ?string $external_envelope_id * * @return $this */ @@ -1749,7 +1749,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ @@ -1773,7 +1773,7 @@ public function getHasComments() /** * Sets has_comments * - * @param ?string $has_comments + * @param ?string $has_comments * * @return $this */ @@ -1797,7 +1797,7 @@ public function getHasFormDataChanged() /** * Sets has_form_data_changed * - * @param ?string $has_form_data_changed + * @param ?string $has_form_data_changed * * @return $this */ @@ -1821,7 +1821,7 @@ public function getHasWavFile() /** * Sets has_wav_file * - * @param ?string $has_wav_file + * @param ?string $has_wav_file * * @return $this */ @@ -1845,7 +1845,7 @@ public function getHolder() /** * Sets holder * - * @param ?string $holder + * @param ?string $holder * * @return $this */ @@ -1869,7 +1869,7 @@ public function getInitialSentDateTime() /** * Sets initial_sent_date_time * - * @param ?string $initial_sent_date_time + * @param ?string $initial_sent_date_time * * @return $this */ @@ -1917,7 +1917,7 @@ public function getIsDynamicEnvelope() /** * Sets is_dynamic_envelope * - * @param ?string $is_dynamic_envelope + * @param ?string $is_dynamic_envelope * * @return $this */ @@ -1941,7 +1941,7 @@ public function getIsSignatureProviderEnvelope() /** * Sets is_signature_provider_envelope * - * @param ?string $is_signature_provider_envelope + * @param ?string $is_signature_provider_envelope * * @return $this */ @@ -1989,7 +1989,7 @@ public function getLocation() /** * Sets location * - * @param ?string $location + * @param ?string $location * * @return $this */ @@ -2061,7 +2061,7 @@ public function getNotification() /** * Sets notification * - * @param \DocuSign\eSign\Model\Notification $notification + * @param \DocuSign\eSign\Model\Notification $notification * * @return $this */ @@ -2133,7 +2133,7 @@ public function getPurgeCompletedDate() /** * Sets purge_completed_date * - * @param ?string $purge_completed_date + * @param ?string $purge_completed_date * * @return $this */ @@ -2157,7 +2157,7 @@ public function getPurgeRequestDate() /** * Sets purge_request_date * - * @param ?string $purge_request_date + * @param ?string $purge_request_date * * @return $this */ @@ -2181,7 +2181,7 @@ public function getPurgeState() /** * Sets purge_state * - * @param ?string $purge_state + * @param ?string $purge_state * * @return $this */ @@ -2325,7 +2325,7 @@ public function getSignerCanSignOnMobile() /** * Sets signer_can_sign_on_mobile * - * @param ?string $signer_can_sign_on_mobile + * @param ?string $signer_can_sign_on_mobile * * @return $this */ @@ -2421,7 +2421,7 @@ public function getStatusDateTime() /** * Sets status_date_time * - * @param ?string $status_date_time + * @param ?string $status_date_time * * @return $this */ @@ -2517,7 +2517,7 @@ public function getUSigState() /** * Sets u_sig_state * - * @param ?string $u_sig_state + * @param ?string $u_sig_state * * @return $this */ @@ -2589,7 +2589,7 @@ public function getWorkflow() /** * Sets workflow * - * @param \DocuSign\eSign\Model\Workflow $workflow + * @param \DocuSign\eSign\Model\Workflow $workflow * * @return $this */ diff --git a/src/Model/EnvelopeAttachment.php b/src/Model/EnvelopeAttachment.php index 9a4eeb0d..248399d6 100644 --- a/src/Model/EnvelopeAttachment.php +++ b/src/Model/EnvelopeAttachment.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_control'] = isset($data['access_control']) ? $data['access_control'] : null; $this->container['attachment_id'] = isset($data['attachment_id']) ? $data['attachment_id'] : null; @@ -249,7 +249,7 @@ public function getAccessControl() /** * Sets access_control * - * @param ?string $access_control + * @param ?string $access_control * * @return $this */ @@ -273,7 +273,7 @@ public function getAttachmentId() /** * Sets attachment_id * - * @param ?string $attachment_id + * @param ?string $attachment_id * * @return $this */ @@ -297,7 +297,7 @@ public function getAttachmentType() /** * Sets attachment_type * - * @param ?string $attachment_type + * @param ?string $attachment_type * * @return $this */ @@ -345,7 +345,7 @@ public function getLabel() /** * Sets label * - * @param ?string $label + * @param ?string $label * * @return $this */ @@ -369,7 +369,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/EnvelopeAttachmentsRequest.php b/src/Model/EnvelopeAttachmentsRequest.php index a755030e..f1fe06f7 100644 --- a/src/Model/EnvelopeAttachmentsRequest.php +++ b/src/Model/EnvelopeAttachmentsRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attachments'] = isset($data['attachments']) ? $data['attachments'] : null; } @@ -219,7 +219,7 @@ public function getAttachments() /** * Sets attachments * - * @param \DocuSign\eSign\Model\Attachment[] $attachments + * @param \DocuSign\eSign\Model\Attachment[] $attachments * * @return $this */ diff --git a/src/Model/EnvelopeAttachmentsResult.php b/src/Model/EnvelopeAttachmentsResult.php index cd04bb3d..6feb707b 100644 --- a/src/Model/EnvelopeAttachmentsResult.php +++ b/src/Model/EnvelopeAttachmentsResult.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attachments'] = isset($data['attachments']) ? $data['attachments'] : null; } @@ -219,7 +219,7 @@ public function getAttachments() /** * Sets attachments * - * @param \DocuSign\eSign\Model\EnvelopeAttachment[] $attachments + * @param \DocuSign\eSign\Model\EnvelopeAttachment[] $attachments * * @return $this */ diff --git a/src/Model/EnvelopeAuditEvent.php b/src/Model/EnvelopeAuditEvent.php index 8b8d1da1..0cbf4481 100644 --- a/src/Model/EnvelopeAuditEvent.php +++ b/src/Model/EnvelopeAuditEvent.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['event_fields'] = isset($data['event_fields']) ? $data['event_fields'] : null; } @@ -219,7 +219,7 @@ public function getEventFields() /** * Sets event_fields * - * @param \DocuSign\eSign\Model\NameValue[] $event_fields + * @param \DocuSign\eSign\Model\NameValue[] $event_fields * * @return $this */ diff --git a/src/Model/EnvelopeAuditEventResponse.php b/src/Model/EnvelopeAuditEventResponse.php index 7b7c3cc1..c8afed6e 100644 --- a/src/Model/EnvelopeAuditEventResponse.php +++ b/src/Model/EnvelopeAuditEventResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['audit_events'] = isset($data['audit_events']) ? $data['audit_events'] : null; } diff --git a/src/Model/EnvelopeCustomMetadata.php b/src/Model/EnvelopeCustomMetadata.php index 212ef2d2..30fd22ed 100644 --- a/src/Model/EnvelopeCustomMetadata.php +++ b/src/Model/EnvelopeCustomMetadata.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_custom_metadata_details'] = isset($data['envelope_custom_metadata_details']) ? $data['envelope_custom_metadata_details'] : null; } @@ -219,7 +219,7 @@ public function getEnvelopeCustomMetadataDetails() /** * Sets envelope_custom_metadata_details * - * @param \DocuSign\eSign\Model\NameValue[] $envelope_custom_metadata_details + * @param \DocuSign\eSign\Model\NameValue[] $envelope_custom_metadata_details * * @return $this */ diff --git a/src/Model/EnvelopeDefinition.php b/src/Model/EnvelopeDefinition.php index a62b9b80..8466a06d 100644 --- a/src/Model/EnvelopeDefinition.php +++ b/src/Model/EnvelopeDefinition.php @@ -611,9 +611,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -628,7 +628,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_control_list_base64'] = isset($data['access_control_list_base64']) ? $data['access_control_list_base64'] : null; $this->container['accessibility'] = isset($data['accessibility']) ? $data['accessibility'] : null; @@ -760,7 +760,7 @@ public function getAccessControlListBase64() /** * Sets access_control_list_base64 * - * @param ?string $access_control_list_base64 + * @param ?string $access_control_list_base64 * * @return $this */ @@ -808,7 +808,7 @@ public function getAllowComments() /** * Sets allow_comments * - * @param ?string $allow_comments + * @param ?string $allow_comments * * @return $this */ @@ -904,7 +904,7 @@ public function getAllowViewHistory() /** * Sets allow_view_history * - * @param ?string $allow_view_history + * @param ?string $allow_view_history * * @return $this */ @@ -928,7 +928,7 @@ public function getAnySigner() /** * Sets any_signer * - * @param ?string $any_signer + * @param ?string $any_signer * * @return $this */ @@ -976,7 +976,7 @@ public function getAttachments() /** * Sets attachments * - * @param \DocuSign\eSign\Model\Attachment[] $attachments + * @param \DocuSign\eSign\Model\Attachment[] $attachments * * @return $this */ @@ -1000,7 +1000,7 @@ public function getAttachmentsUri() /** * Sets attachments_uri * - * @param ?string $attachments_uri + * @param ?string $attachments_uri * * @return $this */ @@ -1048,7 +1048,7 @@ public function getAuthoritativeCopyDefault() /** * Sets authoritative_copy_default * - * @param ?string $authoritative_copy_default + * @param ?string $authoritative_copy_default * * @return $this */ @@ -1072,7 +1072,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -1120,7 +1120,7 @@ public function getBrandLock() /** * Sets brand_lock * - * @param ?string $brand_lock + * @param ?string $brand_lock * * @return $this */ @@ -1144,7 +1144,7 @@ public function getBurnDefaultTabData() /** * Sets burn_default_tab_data * - * @param ?string $burn_default_tab_data + * @param ?string $burn_default_tab_data * * @return $this */ @@ -1240,7 +1240,7 @@ public function getCopyRecipientData() /** * Sets copy_recipient_data * - * @param ?string $copy_recipient_data + * @param ?string $copy_recipient_data * * @return $this */ @@ -1408,7 +1408,7 @@ public function getDisableResponsiveDocument() /** * Sets disable_responsive_document * - * @param ?string $disable_responsive_document + * @param ?string $disable_responsive_document * * @return $this */ @@ -1432,7 +1432,7 @@ public function getDocumentBase64() /** * Sets document_base64 * - * @param ?string $document_base64 + * @param ?string $document_base64 * * @return $this */ @@ -1480,7 +1480,7 @@ public function getDocumentsCombinedUri() /** * Sets documents_combined_uri * - * @param ?string $documents_combined_uri + * @param ?string $documents_combined_uri * * @return $this */ @@ -1648,7 +1648,7 @@ public function getEnvelopeAttachments() /** * Sets envelope_attachments * - * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments + * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments * * @return $this */ @@ -1672,7 +1672,7 @@ public function getEnvelopeCustomMetadata() /** * Sets envelope_custom_metadata * - * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata + * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata * * @return $this */ @@ -1696,7 +1696,7 @@ public function getEnvelopeDocuments() /** * Sets envelope_documents * - * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents + * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents * * @return $this */ @@ -1768,7 +1768,7 @@ public function getEnvelopeLocation() /** * Sets envelope_location * - * @param ?string $envelope_location + * @param ?string $envelope_location * * @return $this */ @@ -1864,7 +1864,7 @@ public function getEventNotifications() /** * Sets event_notifications * - * @param \DocuSign\eSign\Model\EventNotification[] $event_notifications + * @param \DocuSign\eSign\Model\EventNotification[] $event_notifications * * @return $this */ @@ -1888,7 +1888,7 @@ public function getExpireAfter() /** * Sets expire_after * - * @param ?string $expire_after + * @param ?string $expire_after * * @return $this */ @@ -1912,7 +1912,7 @@ public function getExpireDateTime() /** * Sets expire_date_time * - * @param ?string $expire_date_time + * @param ?string $expire_date_time * * @return $this */ @@ -1936,7 +1936,7 @@ public function getExpireEnabled() /** * Sets expire_enabled * - * @param ?string $expire_enabled + * @param ?string $expire_enabled * * @return $this */ @@ -1960,7 +1960,7 @@ public function getExternalEnvelopeId() /** * Sets external_envelope_id * - * @param ?string $external_envelope_id + * @param ?string $external_envelope_id * * @return $this */ @@ -1984,7 +1984,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ @@ -2008,7 +2008,7 @@ public function getHasComments() /** * Sets has_comments * - * @param ?string $has_comments + * @param ?string $has_comments * * @return $this */ @@ -2032,7 +2032,7 @@ public function getHasFormDataChanged() /** * Sets has_form_data_changed * - * @param ?string $has_form_data_changed + * @param ?string $has_form_data_changed * * @return $this */ @@ -2056,7 +2056,7 @@ public function getHasWavFile() /** * Sets has_wav_file * - * @param ?string $has_wav_file + * @param ?string $has_wav_file * * @return $this */ @@ -2080,7 +2080,7 @@ public function getHolder() /** * Sets holder * - * @param ?string $holder + * @param ?string $holder * * @return $this */ @@ -2104,7 +2104,7 @@ public function getInitialSentDateTime() /** * Sets initial_sent_date_time * - * @param ?string $initial_sent_date_time + * @param ?string $initial_sent_date_time * * @return $this */ @@ -2152,7 +2152,7 @@ public function getIsDynamicEnvelope() /** * Sets is_dynamic_envelope * - * @param ?string $is_dynamic_envelope + * @param ?string $is_dynamic_envelope * * @return $this */ @@ -2176,7 +2176,7 @@ public function getIsSignatureProviderEnvelope() /** * Sets is_signature_provider_envelope * - * @param ?string $is_signature_provider_envelope + * @param ?string $is_signature_provider_envelope * * @return $this */ @@ -2224,7 +2224,7 @@ public function getLocation() /** * Sets location * - * @param ?string $location + * @param ?string $location * * @return $this */ @@ -2344,7 +2344,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -2392,7 +2392,7 @@ public function getPurgeCompletedDate() /** * Sets purge_completed_date * - * @param ?string $purge_completed_date + * @param ?string $purge_completed_date * * @return $this */ @@ -2416,7 +2416,7 @@ public function getPurgeRequestDate() /** * Sets purge_request_date * - * @param ?string $purge_request_date + * @param ?string $purge_request_date * * @return $this */ @@ -2536,7 +2536,7 @@ public function getRecipientViewRequest() /** * Sets recipient_view_request * - * @param \DocuSign\eSign\Model\RecipientViewRequest $recipient_view_request + * @param \DocuSign\eSign\Model\RecipientViewRequest $recipient_view_request * * @return $this */ @@ -2608,7 +2608,7 @@ public function getSignerCanSignOnMobile() /** * Sets signer_can_sign_on_mobile * - * @param ?string $signer_can_sign_on_mobile + * @param ?string $signer_can_sign_on_mobile * * @return $this */ @@ -2704,7 +2704,7 @@ public function getStatusDateTime() /** * Sets status_date_time * - * @param ?string $status_date_time + * @param ?string $status_date_time * * @return $this */ @@ -2848,7 +2848,7 @@ public function getUSigState() /** * Sets u_sig_state * - * @param ?string $u_sig_state + * @param ?string $u_sig_state * * @return $this */ diff --git a/src/Model/EnvelopeDelayRule.php b/src/Model/EnvelopeDelayRule.php index 8d77e97f..634eaba7 100644 --- a/src/Model/EnvelopeDelayRule.php +++ b/src/Model/EnvelopeDelayRule.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['delay'] = isset($data['delay']) ? $data['delay'] : null; $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; diff --git a/src/Model/EnvelopeDelayRuleApiModel.php b/src/Model/EnvelopeDelayRuleApiModel.php index 05043b06..ea34c65b 100644 --- a/src/Model/EnvelopeDelayRuleApiModel.php +++ b/src/Model/EnvelopeDelayRuleApiModel.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['delay'] = isset($data['delay']) ? $data['delay'] : null; $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; diff --git a/src/Model/EnvelopeDocument.php b/src/Model/EnvelopeDocument.php index d326c890..7249211b 100644 --- a/src/Model/EnvelopeDocument.php +++ b/src/Model/EnvelopeDocument.php @@ -341,9 +341,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -358,7 +358,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['added_recipient_ids'] = isset($data['added_recipient_ids']) ? $data['added_recipient_ids'] : null; $this->container['agreement_type'] = isset($data['agreement_type']) ? $data['agreement_type'] : null; @@ -436,7 +436,7 @@ public function getAddedRecipientIds() /** * Sets added_recipient_ids * - * @param ?string[] $added_recipient_ids + * @param ?string[] $added_recipient_ids * * @return $this */ @@ -460,7 +460,7 @@ public function getAgreementType() /** * Sets agreement_type * - * @param ?string $agreement_type + * @param ?string $agreement_type * * @return $this */ @@ -484,7 +484,7 @@ public function getAgreementTypeSource() /** * Sets agreement_type_source * - * @param ?string $agreement_type_source + * @param ?string $agreement_type_source * * @return $this */ @@ -508,7 +508,7 @@ public function getAttachmentTabId() /** * Sets attachment_tab_id * - * @param ?string $attachment_tab_id + * @param ?string $attachment_tab_id * * @return $this */ @@ -580,7 +580,7 @@ public function getAvailableDocumentTypes() /** * Sets available_document_types * - * @param \DocuSign\eSign\Model\SignatureType[] $available_document_types + * @param \DocuSign\eSign\Model\SignatureType[] $available_document_types * * @return $this */ @@ -604,7 +604,7 @@ public function getContainsPdfFormFields() /** * Sets contains_pdf_form_fields * - * @param ?string $contains_pdf_form_fields + * @param ?string $contains_pdf_form_fields * * @return $this */ @@ -628,7 +628,7 @@ public function getDisplay() /** * Sets display * - * @param ?string $display + * @param ?string $display * * @return $this */ @@ -676,7 +676,7 @@ public function getDocGenDocumentStatus() /** * Sets doc_gen_document_status * - * @param ?string $doc_gen_document_status + * @param ?string $doc_gen_document_status * * @return $this */ @@ -700,7 +700,7 @@ public function getDocGenErrors() /** * Sets doc_gen_errors * - * @param \DocuSign\eSign\Model\DocGenSyntaxError[] $doc_gen_errors + * @param \DocuSign\eSign\Model\DocGenSyntaxError[] $doc_gen_errors * * @return $this */ @@ -724,7 +724,7 @@ public function getDocGenFormFields() /** * Sets doc_gen_form_fields * - * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_fields + * @param \DocuSign\eSign\Model\DocGenFormField[] $doc_gen_form_fields * * @return $this */ @@ -748,7 +748,7 @@ public function getDocumentBase64() /** * Sets document_base64 * - * @param ?string $document_base64 + * @param ?string $document_base64 * * @return $this */ @@ -772,7 +772,7 @@ public function getDocumentFields() /** * Sets document_fields * - * @param \DocuSign\eSign\Model\NameValue[] $document_fields + * @param \DocuSign\eSign\Model\NameValue[] $document_fields * * @return $this */ @@ -820,7 +820,7 @@ public function getDocumentIdGuid() /** * Sets document_id_guid * - * @param ?string $document_id_guid + * @param ?string $document_id_guid * * @return $this */ @@ -844,7 +844,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -892,7 +892,7 @@ public function getHasDigitalSignature() /** * Sets has_digital_signature * - * @param ?string $has_digital_signature + * @param ?string $has_digital_signature * * @return $this */ @@ -916,7 +916,7 @@ public function getIncludeInDownload() /** * Sets include_in_download * - * @param ?string $include_in_download + * @param ?string $include_in_download * * @return $this */ @@ -964,7 +964,7 @@ public function getIsAceGenDocument() /** * Sets is_ace_gen_document * - * @param ?string $is_ace_gen_document + * @param ?string $is_ace_gen_document * * @return $this */ @@ -988,7 +988,7 @@ public function getIsDocGenDocument() /** * Sets is_doc_gen_document * - * @param ?string $is_doc_gen_document + * @param ?string $is_doc_gen_document * * @return $this */ @@ -1012,7 +1012,7 @@ public function getIsExternallyAvailable() /** * Sets is_externally_available * - * @param ?string $is_externally_available + * @param ?string $is_externally_available * * @return $this */ @@ -1036,7 +1036,7 @@ public function getIsFlattened() /** * Sets is_flattened * - * @param ?string $is_flattened + * @param ?string $is_flattened * * @return $this */ @@ -1060,7 +1060,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1108,7 +1108,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ @@ -1132,7 +1132,7 @@ public function getPages() /** * Sets pages * - * @param \DocuSign\eSign\Model\Page[] $pages + * @param \DocuSign\eSign\Model\Page[] $pages * * @return $this */ @@ -1156,7 +1156,7 @@ public function getSignerMustAcknowledge() /** * Sets signer_must_acknowledge * - * @param ?string $signer_must_acknowledge + * @param ?string $signer_must_acknowledge * * @return $this */ @@ -1204,7 +1204,7 @@ public function getSizeBytes() /** * Sets size_bytes * - * @param ?string $size_bytes + * @param ?string $size_bytes * * @return $this */ @@ -1276,7 +1276,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ @@ -1300,7 +1300,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/EnvelopeDocumentsResult.php b/src/Model/EnvelopeDocumentsResult.php index 6f7d529e..7b78c9c5 100644 --- a/src/Model/EnvelopeDocumentsResult.php +++ b/src/Model/EnvelopeDocumentsResult.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_documents'] = isset($data['envelope_documents']) ? $data['envelope_documents'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; @@ -225,7 +225,7 @@ public function getEnvelopeDocuments() /** * Sets envelope_documents * - * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents + * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents * * @return $this */ diff --git a/src/Model/EnvelopeEvent.php b/src/Model/EnvelopeEvent.php index 9d4b8ca7..feefe676 100644 --- a/src/Model/EnvelopeEvent.php +++ b/src/Model/EnvelopeEvent.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_event_status_code'] = isset($data['envelope_event_status_code']) ? $data['envelope_event_status_code'] : null; $this->container['include_documents'] = isset($data['include_documents']) ? $data['include_documents'] : null; diff --git a/src/Model/EnvelopeFormData.php b/src/Model/EnvelopeFormData.php index cd649ec8..4e037753 100644 --- a/src/Model/EnvelopeFormData.php +++ b/src/Model/EnvelopeFormData.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email_subject'] = isset($data['email_subject']) ? $data['email_subject'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; @@ -304,7 +304,7 @@ public function getFormData() /** * Sets form_data * - * @param \DocuSign\eSign\Model\FormDataItem[] $form_data + * @param \DocuSign\eSign\Model\FormDataItem[] $form_data * * @return $this */ @@ -352,7 +352,7 @@ public function getRecipientFormData() /** * Sets recipient_form_data * - * @param \DocuSign\eSign\Model\RecipientFormData[] $recipient_form_data + * @param \DocuSign\eSign\Model\RecipientFormData[] $recipient_form_data * * @return $this */ diff --git a/src/Model/EnvelopeFormDataPrefillFormData.php b/src/Model/EnvelopeFormDataPrefillFormData.php index cd4da875..d88d046b 100644 --- a/src/Model/EnvelopeFormDataPrefillFormData.php +++ b/src/Model/EnvelopeFormDataPrefillFormData.php @@ -158,9 +158,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -175,7 +175,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['form_data'] = isset($data['form_data']) ? $data['form_data'] : null; } @@ -217,7 +217,7 @@ public function getFormData() /** * Sets form_data * - * @param \DocuSign\eSign\Model\FormDataItem[] $form_data + * @param \DocuSign\eSign\Model\FormDataItem[] $form_data * * @return $this */ diff --git a/src/Model/EnvelopeId.php b/src/Model/EnvelopeId.php index 67d0737e..fed79e3b 100644 --- a/src/Model/EnvelopeId.php +++ b/src/Model/EnvelopeId.php @@ -643,7 +643,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/EnvelopeIdsRequest.php b/src/Model/EnvelopeIdsRequest.php index 0248702f..83df4e76 100644 --- a/src/Model/EnvelopeIdsRequest.php +++ b/src/Model/EnvelopeIdsRequest.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_ids'] = isset($data['envelope_ids']) ? $data['envelope_ids'] : null; $this->container['transaction_ids'] = isset($data['transaction_ids']) ? $data['transaction_ids'] : null; @@ -226,7 +226,7 @@ public function getEnvelopeIds() /** * Sets envelope_ids * - * @param ?string[] $envelope_ids + * @param ?string[] $envelope_ids * * @return $this */ diff --git a/src/Model/EnvelopeMetadata.php b/src/Model/EnvelopeMetadata.php index 9085a2e7..1486721a 100644 --- a/src/Model/EnvelopeMetadata.php +++ b/src/Model/EnvelopeMetadata.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_advanced_correct'] = isset($data['allow_advanced_correct']) ? $data['allow_advanced_correct'] : null; $this->container['allow_correct'] = isset($data['allow_correct']) ? $data['allow_correct'] : null; @@ -231,7 +231,7 @@ public function getAllowAdvancedCorrect() /** * Sets allow_advanced_correct * - * @param ?string $allow_advanced_correct + * @param ?string $allow_advanced_correct * * @return $this */ @@ -255,7 +255,7 @@ public function getAllowCorrect() /** * Sets allow_correct * - * @param ?string $allow_correct + * @param ?string $allow_correct * * @return $this */ @@ -279,7 +279,7 @@ public function getEnableSignWithNotary() /** * Sets enable_sign_with_notary * - * @param ?string $enable_sign_with_notary + * @param ?string $enable_sign_with_notary * * @return $this */ diff --git a/src/Model/EnvelopeNotificationRequest.php b/src/Model/EnvelopeNotificationRequest.php index 27939478..9b478440 100644 --- a/src/Model/EnvelopeNotificationRequest.php +++ b/src/Model/EnvelopeNotificationRequest.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expirations'] = isset($data['expirations']) ? $data['expirations'] : null; $this->container['reminders'] = isset($data['reminders']) ? $data['reminders'] : null; @@ -280,7 +280,7 @@ public function getUseAccountDefaults() /** * Sets use_account_defaults * - * @param ?string $use_account_defaults + * @param ?string $use_account_defaults * * @return $this */ diff --git a/src/Model/EnvelopePublishTransaction.php b/src/Model/EnvelopePublishTransaction.php index a087dc47..be6be5cb 100644 --- a/src/Model/EnvelopePublishTransaction.php +++ b/src/Model/EnvelopePublishTransaction.php @@ -220,9 +220,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -237,7 +237,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['apply_connect_settings'] = isset($data['apply_connect_settings']) ? $data['apply_connect_settings'] : null; $this->container['envelope_count'] = isset($data['envelope_count']) ? $data['envelope_count'] : null; @@ -291,7 +291,7 @@ public function getApplyConnectSettings() /** * Sets apply_connect_settings * - * @param ?string $apply_connect_settings + * @param ?string $apply_connect_settings * * @return $this */ @@ -315,7 +315,7 @@ public function getEnvelopeCount() /** * Sets envelope_count * - * @param ?string $envelope_count + * @param ?string $envelope_count * * @return $this */ @@ -339,7 +339,7 @@ public function getEnvelopeLevelErrorRollups() /** * Sets envelope_level_error_rollups * - * @param \DocuSign\eSign\Model\EnvelopePublishTransactionErrorRollup[] $envelope_level_error_rollups + * @param \DocuSign\eSign\Model\EnvelopePublishTransactionErrorRollup[] $envelope_level_error_rollups * * @return $this */ @@ -363,7 +363,7 @@ public function getEnvelopePublishTransactionId() /** * Sets envelope_publish_transaction_id * - * @param ?string $envelope_publish_transaction_id + * @param ?string $envelope_publish_transaction_id * * @return $this */ @@ -387,7 +387,7 @@ public function getErrorCount() /** * Sets error_count * - * @param ?string $error_count + * @param ?string $error_count * * @return $this */ @@ -411,7 +411,7 @@ public function getFileLevelErrors() /** * Sets file_level_errors * - * @param ?string[] $file_level_errors + * @param ?string[] $file_level_errors * * @return $this */ @@ -435,7 +435,7 @@ public function getNoActionRequiredEnvelopeCount() /** * Sets no_action_required_envelope_count * - * @param ?string $no_action_required_envelope_count + * @param ?string $no_action_required_envelope_count * * @return $this */ @@ -459,7 +459,7 @@ public function getProcessedEnvelopeCount() /** * Sets processed_envelope_count * - * @param ?string $processed_envelope_count + * @param ?string $processed_envelope_count * * @return $this */ @@ -483,7 +483,7 @@ public function getProcessingStatus() /** * Sets processing_status * - * @param ?string $processing_status + * @param ?string $processing_status * * @return $this */ @@ -507,7 +507,7 @@ public function getResultsUri() /** * Sets results_uri * - * @param ?string $results_uri + * @param ?string $results_uri * * @return $this */ @@ -531,7 +531,7 @@ public function getSubmissionDate() /** * Sets submission_date * - * @param ?string $submission_date + * @param ?string $submission_date * * @return $this */ @@ -555,7 +555,7 @@ public function getSubmittedByUserInfo() /** * Sets submitted_by_user_info * - * @param \DocuSign\eSign\Model\UserInfo $submitted_by_user_info + * @param \DocuSign\eSign\Model\UserInfo $submitted_by_user_info * * @return $this */ @@ -579,7 +579,7 @@ public function getSubmittedForPublishingEnvelopeCount() /** * Sets submitted_for_publishing_envelope_count * - * @param ?string $submitted_for_publishing_envelope_count + * @param ?string $submitted_for_publishing_envelope_count * * @return $this */ diff --git a/src/Model/EnvelopePublishTransactionErrorRollup.php b/src/Model/EnvelopePublishTransactionErrorRollup.php index 86fa5b2a..574f5373 100644 --- a/src/Model/EnvelopePublishTransactionErrorRollup.php +++ b/src/Model/EnvelopePublishTransactionErrorRollup.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['count'] = isset($data['count']) ? $data['count'] : null; $this->container['error_type'] = isset($data['error_type']) ? $data['error_type'] : null; @@ -225,7 +225,7 @@ public function getCount() /** * Sets count * - * @param ?string $count + * @param ?string $count * * @return $this */ @@ -249,7 +249,7 @@ public function getErrorType() /** * Sets error_type * - * @param ?string $error_type + * @param ?string $error_type * * @return $this */ diff --git a/src/Model/EnvelopePurgeConfiguration.php b/src/Model/EnvelopePurgeConfiguration.php index f352889f..13782c5a 100644 --- a/src/Model/EnvelopePurgeConfiguration.php +++ b/src/Model/EnvelopePurgeConfiguration.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['purge_envelopes'] = isset($data['purge_envelopes']) ? $data['purge_envelopes'] : null; $this->container['redact_pii'] = isset($data['redact_pii']) ? $data['redact_pii'] : null; @@ -238,7 +238,7 @@ public function getPurgeEnvelopes() /** * Sets purge_envelopes * - * @param ?string $purge_envelopes + * @param ?string $purge_envelopes * * @return $this */ @@ -262,7 +262,7 @@ public function getRedactPii() /** * Sets redact_pii * - * @param ?string $redact_pii + * @param ?string $redact_pii * * @return $this */ @@ -286,7 +286,7 @@ public function getRemoveTabsAndEnvelopeAttachments() /** * Sets remove_tabs_and_envelope_attachments * - * @param ?string $remove_tabs_and_envelope_attachments + * @param ?string $remove_tabs_and_envelope_attachments * * @return $this */ @@ -310,7 +310,7 @@ public function getRetentionDays() /** * Sets retention_days * - * @param ?string $retention_days + * @param ?string $retention_days * * @return $this */ diff --git a/src/Model/EnvelopeSummary.php b/src/Model/EnvelopeSummary.php index caaeac5e..b3b42c99 100644 --- a/src/Model/EnvelopeSummary.php +++ b/src/Model/EnvelopeSummary.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_envelope_status'] = isset($data['bulk_envelope_status']) ? $data['bulk_envelope_status'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; @@ -334,7 +334,7 @@ public function getRecipientSigningUri() /** * Sets recipient_signing_uri * - * @param ?string $recipient_signing_uri + * @param ?string $recipient_signing_uri * * @return $this */ @@ -358,7 +358,7 @@ public function getRecipientSigningUriError() /** * Sets recipient_signing_uri_error * - * @param ?string $recipient_signing_uri_error + * @param ?string $recipient_signing_uri_error * * @return $this */ @@ -430,7 +430,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/EnvelopeTemplate.php b/src/Model/EnvelopeTemplate.php index 9fb333cf..5561dff3 100644 --- a/src/Model/EnvelopeTemplate.php +++ b/src/Model/EnvelopeTemplate.php @@ -675,9 +675,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -692,7 +692,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_control_list_base64'] = isset($data['access_control_list_base64']) ? $data['access_control_list_base64'] : null; $this->container['allow_comments'] = isset($data['allow_comments']) ? $data['allow_comments'] : null; @@ -837,7 +837,7 @@ public function getAccessControlListBase64() /** * Sets access_control_list_base64 * - * @param ?string $access_control_list_base64 + * @param ?string $access_control_list_base64 * * @return $this */ @@ -861,7 +861,7 @@ public function getAllowComments() /** * Sets allow_comments * - * @param ?string $allow_comments + * @param ?string $allow_comments * * @return $this */ @@ -933,7 +933,7 @@ public function getAllowViewHistory() /** * Sets allow_view_history * - * @param ?string $allow_view_history + * @param ?string $allow_view_history * * @return $this */ @@ -957,7 +957,7 @@ public function getAnySigner() /** * Sets any_signer * - * @param ?string $any_signer + * @param ?string $any_signer * * @return $this */ @@ -1005,7 +1005,7 @@ public function getAttachmentsUri() /** * Sets attachments_uri * - * @param ?string $attachments_uri + * @param ?string $attachments_uri * * @return $this */ @@ -1053,7 +1053,7 @@ public function getAuthoritativeCopyDefault() /** * Sets authoritative_copy_default * - * @param ?string $authoritative_copy_default + * @param ?string $authoritative_copy_default * * @return $this */ @@ -1077,7 +1077,7 @@ public function getAutoMatch() /** * Sets auto_match * - * @param ?string $auto_match + * @param ?string $auto_match * * @return $this */ @@ -1101,7 +1101,7 @@ public function getAutoMatchSpecifiedByUser() /** * Sets auto_match_specified_by_user * - * @param ?string $auto_match_specified_by_user + * @param ?string $auto_match_specified_by_user * * @return $this */ @@ -1125,7 +1125,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -1149,7 +1149,7 @@ public function getBrandId() /** * Sets brand_id * - * @param ?string $brand_id + * @param ?string $brand_id * * @return $this */ @@ -1173,7 +1173,7 @@ public function getBrandLock() /** * Sets brand_lock * - * @param ?string $brand_lock + * @param ?string $brand_lock * * @return $this */ @@ -1197,7 +1197,7 @@ public function getBurnDefaultTabData() /** * Sets burn_default_tab_data * - * @param ?string $burn_default_tab_data + * @param ?string $burn_default_tab_data * * @return $this */ @@ -1269,7 +1269,7 @@ public function getCopyRecipientData() /** * Sets copy_recipient_data * - * @param ?string $copy_recipient_data + * @param ?string $copy_recipient_data * * @return $this */ @@ -1293,7 +1293,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ @@ -1461,7 +1461,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -1485,7 +1485,7 @@ public function getDisableResponsiveDocument() /** * Sets disable_responsive_document * - * @param ?string $disable_responsive_document + * @param ?string $disable_responsive_document * * @return $this */ @@ -1509,7 +1509,7 @@ public function getDocumentBase64() /** * Sets document_base64 * - * @param ?string $document_base64 + * @param ?string $document_base64 * * @return $this */ @@ -1557,7 +1557,7 @@ public function getDocumentsCombinedUri() /** * Sets documents_combined_uri * - * @param ?string $documents_combined_uri + * @param ?string $documents_combined_uri * * @return $this */ @@ -1605,7 +1605,7 @@ public function getEmailBlurb() /** * Sets email_blurb * - * @param ?string $email_blurb + * @param ?string $email_blurb * * @return $this */ @@ -1725,7 +1725,7 @@ public function getEnvelopeAttachments() /** * Sets envelope_attachments * - * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments + * @param \DocuSign\eSign\Model\Attachment[] $envelope_attachments * * @return $this */ @@ -1749,7 +1749,7 @@ public function getEnvelopeCustomMetadata() /** * Sets envelope_custom_metadata * - * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata + * @param \DocuSign\eSign\Model\EnvelopeCustomMetadata $envelope_custom_metadata * * @return $this */ @@ -1773,7 +1773,7 @@ public function getEnvelopeDocuments() /** * Sets envelope_documents * - * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents + * @param \DocuSign\eSign\Model\EnvelopeDocument[] $envelope_documents * * @return $this */ @@ -1845,7 +1845,7 @@ public function getEnvelopeLocation() /** * Sets envelope_location * - * @param ?string $envelope_location + * @param ?string $envelope_location * * @return $this */ @@ -1917,7 +1917,7 @@ public function getExpireAfter() /** * Sets expire_after * - * @param ?string $expire_after + * @param ?string $expire_after * * @return $this */ @@ -1941,7 +1941,7 @@ public function getExpireDateTime() /** * Sets expire_date_time * - * @param ?string $expire_date_time + * @param ?string $expire_date_time * * @return $this */ @@ -1965,7 +1965,7 @@ public function getExpireEnabled() /** * Sets expire_enabled * - * @param ?string $expire_enabled + * @param ?string $expire_enabled * * @return $this */ @@ -1989,7 +1989,7 @@ public function getExternalEnvelopeId() /** * Sets external_envelope_id * - * @param ?string $external_envelope_id + * @param ?string $external_envelope_id * * @return $this */ @@ -2013,7 +2013,7 @@ public function getFavoritedByMe() /** * Sets favorited_by_me * - * @param ?string $favorited_by_me + * @param ?string $favorited_by_me * * @return $this */ @@ -2037,7 +2037,7 @@ public function getFolderId() /** * Sets folder_id * - * @param ?string $folder_id + * @param ?string $folder_id * * @return $this */ @@ -2061,7 +2061,7 @@ public function getFolderIds() /** * Sets folder_ids * - * @param ?string[] $folder_ids + * @param ?string[] $folder_ids * * @return $this */ @@ -2085,7 +2085,7 @@ public function getFolderName() /** * Sets folder_name * - * @param ?string $folder_name + * @param ?string $folder_name * * @return $this */ @@ -2109,7 +2109,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ @@ -2133,7 +2133,7 @@ public function getHasComments() /** * Sets has_comments * - * @param ?string $has_comments + * @param ?string $has_comments * * @return $this */ @@ -2157,7 +2157,7 @@ public function getHasFormDataChanged() /** * Sets has_form_data_changed * - * @param ?string $has_form_data_changed + * @param ?string $has_form_data_changed * * @return $this */ @@ -2181,7 +2181,7 @@ public function getHasWavFile() /** * Sets has_wav_file * - * @param ?string $has_wav_file + * @param ?string $has_wav_file * * @return $this */ @@ -2205,7 +2205,7 @@ public function getHolder() /** * Sets holder * - * @param ?string $holder + * @param ?string $holder * * @return $this */ @@ -2229,7 +2229,7 @@ public function getInitialSentDateTime() /** * Sets initial_sent_date_time * - * @param ?string $initial_sent_date_time + * @param ?string $initial_sent_date_time * * @return $this */ @@ -2277,7 +2277,7 @@ public function getIsAceGenTemplate() /** * Sets is_ace_gen_template * - * @param ?string $is_ace_gen_template + * @param ?string $is_ace_gen_template * * @return $this */ @@ -2301,7 +2301,7 @@ public function getIsDocGenTemplate() /** * Sets is_doc_gen_template * - * @param ?string $is_doc_gen_template + * @param ?string $is_doc_gen_template * * @return $this */ @@ -2325,7 +2325,7 @@ public function getIsDynamicEnvelope() /** * Sets is_dynamic_envelope * - * @param ?string $is_dynamic_envelope + * @param ?string $is_dynamic_envelope * * @return $this */ @@ -2349,7 +2349,7 @@ public function getIsSignatureProviderEnvelope() /** * Sets is_signature_provider_envelope * - * @param ?string $is_signature_provider_envelope + * @param ?string $is_signature_provider_envelope * * @return $this */ @@ -2373,7 +2373,7 @@ public function getLastModified() /** * Sets last_modified * - * @param ?string $last_modified + * @param ?string $last_modified * * @return $this */ @@ -2397,7 +2397,7 @@ public function getLastModifiedBy() /** * Sets last_modified_by * - * @param \DocuSign\eSign\Model\UserInfo $last_modified_by + * @param \DocuSign\eSign\Model\UserInfo $last_modified_by * * @return $this */ @@ -2445,7 +2445,7 @@ public function getLastUsed() /** * Sets last_used * - * @param ?string $last_used + * @param ?string $last_used * * @return $this */ @@ -2469,7 +2469,7 @@ public function getLocation() /** * Sets location * - * @param ?string $location + * @param ?string $location * * @return $this */ @@ -2541,7 +2541,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2565,7 +2565,7 @@ public function getNewPassword() /** * Sets new_password * - * @param ?string $new_password + * @param ?string $new_password * * @return $this */ @@ -2589,7 +2589,7 @@ public function getNotification() /** * Sets notification * - * @param \DocuSign\eSign\Model\Notification $notification + * @param \DocuSign\eSign\Model\Notification $notification * * @return $this */ @@ -2637,7 +2637,7 @@ public function getOwner() /** * Sets owner * - * @param \DocuSign\eSign\Model\UserInfo $owner + * @param \DocuSign\eSign\Model\UserInfo $owner * * @return $this */ @@ -2661,7 +2661,7 @@ public function getPageCount() /** * Sets page_count * - * @param ?string $page_count + * @param ?string $page_count * * @return $this */ @@ -2685,7 +2685,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -2709,7 +2709,7 @@ public function getPasswordProtected() /** * Sets password_protected * - * @param ?string $password_protected + * @param ?string $password_protected * * @return $this */ @@ -2757,7 +2757,7 @@ public function getPowerForms() /** * Sets power_forms * - * @param \DocuSign\eSign\Model\PowerForm[] $power_forms + * @param \DocuSign\eSign\Model\PowerForm[] $power_forms * * @return $this */ @@ -2781,7 +2781,7 @@ public function getPurgeCompletedDate() /** * Sets purge_completed_date * - * @param ?string $purge_completed_date + * @param ?string $purge_completed_date * * @return $this */ @@ -2805,7 +2805,7 @@ public function getPurgeRequestDate() /** * Sets purge_request_date * - * @param ?string $purge_request_date + * @param ?string $purge_request_date * * @return $this */ @@ -2829,7 +2829,7 @@ public function getPurgeState() /** * Sets purge_state * - * @param ?string $purge_state + * @param ?string $purge_state * * @return $this */ @@ -2997,7 +2997,7 @@ public function getSignerCanSignOnMobile() /** * Sets signer_can_sign_on_mobile * - * @param ?string $signer_can_sign_on_mobile + * @param ?string $signer_can_sign_on_mobile * * @return $this */ @@ -3093,7 +3093,7 @@ public function getStatusDateTime() /** * Sets status_date_time * - * @param ?string $status_date_time + * @param ?string $status_date_time * * @return $this */ @@ -3189,7 +3189,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -3237,7 +3237,7 @@ public function getUSigState() /** * Sets u_sig_state * - * @param ?string $u_sig_state + * @param ?string $u_sig_state * * @return $this */ @@ -3309,7 +3309,7 @@ public function getWorkflow() /** * Sets workflow * - * @param \DocuSign\eSign\Model\Workflow $workflow + * @param \DocuSign\eSign\Model\Workflow $workflow * * @return $this */ diff --git a/src/Model/EnvelopeTemplateDefinition.php b/src/Model/EnvelopeTemplateDefinition.php index 8841f55f..63b9f048 100644 --- a/src/Model/EnvelopeTemplateDefinition.php +++ b/src/Model/EnvelopeTemplateDefinition.php @@ -164,9 +164,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created'] = isset($data['created']) ? $data['created'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -232,7 +232,7 @@ public function getCreated() /** * Sets created - * @param string $created + * @param string $created * @return $this */ public function setCreated($created) @@ -253,7 +253,7 @@ public function getDescription() /** * Sets description - * @param string $description + * @param string $description * @return $this */ public function setDescription($description) @@ -337,7 +337,7 @@ public function getLastModified() /** * Sets last_modified - * @param string $last_modified + * @param string $last_modified * @return $this */ public function setLastModified($last_modified) @@ -379,7 +379,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) @@ -400,7 +400,7 @@ public function getNewPassword() /** * Sets new_password - * @param string $new_password + * @param string $new_password * @return $this */ public function setNewPassword($new_password) @@ -463,7 +463,7 @@ public function getParentFolderUri() /** * Sets parent_folder_uri - * @param string $parent_folder_uri + * @param string $parent_folder_uri * @return $this */ public function setParentFolderUri($parent_folder_uri) @@ -484,7 +484,7 @@ public function getPassword() /** * Sets password - * @param string $password + * @param string $password * @return $this */ public function setPassword($password) @@ -547,7 +547,7 @@ public function getUri() /** * Sets uri - * @param string $uri + * @param string $uri * @return $this */ public function setUri($uri) diff --git a/src/Model/EnvelopeTemplateResult.php b/src/Model/EnvelopeTemplateResult.php index 8f08e7b5..1a957827 100644 --- a/src/Model/EnvelopeTemplateResult.php +++ b/src/Model/EnvelopeTemplateResult.php @@ -363,9 +363,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -377,7 +377,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_markup'] = isset($data['allow_markup']) ? $data['allow_markup'] : null; $this->container['allow_reassign'] = isset($data['allow_reassign']) ? $data['allow_reassign'] : null; @@ -523,7 +523,7 @@ public function getAllowViewHistory() /** * Sets allow_view_history - * @param string $allow_view_history + * @param string $allow_view_history * @return $this */ public function setAllowViewHistory($allow_view_history) @@ -565,7 +565,7 @@ public function getAttachmentsUri() /** * Sets attachments_uri - * @param string $attachments_uri + * @param string $attachments_uri * @return $this */ public function setAttachmentsUri($attachments_uri) @@ -607,7 +607,7 @@ public function getAuthoritativeCopyDefault() /** * Sets authoritative_copy_default - * @param string $authoritative_copy_default + * @param string $authoritative_copy_default * @return $this */ public function setAuthoritativeCopyDefault($authoritative_copy_default) @@ -628,7 +628,7 @@ public function getAutoNavigation() /** * Sets auto_navigation - * @param string $auto_navigation + * @param string $auto_navigation * @return $this */ public function setAutoNavigation($auto_navigation) @@ -649,7 +649,7 @@ public function getBrandId() /** * Sets brand_id - * @param string $brand_id + * @param string $brand_id * @return $this */ public function setBrandId($brand_id) @@ -670,7 +670,7 @@ public function getBrandLock() /** * Sets brand_lock - * @param string $brand_lock + * @param string $brand_lock * @return $this */ public function setBrandLock($brand_lock) @@ -733,7 +733,7 @@ public function getCreated() /** * Sets created - * @param string $created + * @param string $created * @return $this */ public function setCreated($created) @@ -880,7 +880,7 @@ public function getDescription() /** * Sets description - * @param string $description + * @param string $description * @return $this */ public function setDescription($description) @@ -901,7 +901,7 @@ public function getDisableResponsiveDocument() /** * Sets disable_responsive_document - * @param string $disable_responsive_document + * @param string $disable_responsive_document * @return $this */ public function setDisableResponsiveDocument($disable_responsive_document) @@ -943,7 +943,7 @@ public function getDocumentsCombinedUri() /** * Sets documents_combined_uri - * @param string $documents_combined_uri + * @param string $documents_combined_uri * @return $this */ public function setDocumentsCombinedUri($documents_combined_uri) @@ -985,7 +985,7 @@ public function getEmailBlurb() /** * Sets email_blurb - * @param string $email_blurb + * @param string $email_blurb * @return $this */ public function setEmailBlurb($email_blurb) @@ -1153,7 +1153,7 @@ public function getFolderId() /** * Sets folder_id - * @param string $folder_id + * @param string $folder_id * @return $this */ public function setFolderId($folder_id) @@ -1174,7 +1174,7 @@ public function getFolderName() /** * Sets folder_name - * @param string $folder_name + * @param string $folder_name * @return $this */ public function setFolderName($folder_name) @@ -1195,7 +1195,7 @@ public function getFolderUri() /** * Sets folder_uri - * @param string $folder_uri + * @param string $folder_uri * @return $this */ public function setFolderUri($folder_uri) @@ -1216,7 +1216,7 @@ public function getInitialSentDateTime() /** * Sets initial_sent_date_time - * @param string $initial_sent_date_time + * @param string $initial_sent_date_time * @return $this */ public function setInitialSentDateTime($initial_sent_date_time) @@ -1258,7 +1258,7 @@ public function getIsSignatureProviderEnvelope() /** * Sets is_signature_provider_envelope - * @param string $is_signature_provider_envelope + * @param string $is_signature_provider_envelope * @return $this */ public function setIsSignatureProviderEnvelope($is_signature_provider_envelope) @@ -1279,7 +1279,7 @@ public function getLastModified() /** * Sets last_modified - * @param string $last_modified + * @param string $last_modified * @return $this */ public function setLastModified($last_modified) @@ -1363,7 +1363,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) @@ -1447,7 +1447,7 @@ public function getPageCount() /** * Sets page_count - * @param int $page_count + * @param int $page_count * @return $this */ public function setPageCount($page_count) @@ -1468,7 +1468,7 @@ public function getParentFolderUri() /** * Sets parent_folder_uri - * @param string $parent_folder_uri + * @param string $parent_folder_uri * @return $this */ public function setParentFolderUri($parent_folder_uri) @@ -1489,7 +1489,7 @@ public function getPassword() /** * Sets password - * @param string $password + * @param string $password * @return $this */ public function setPassword($password) @@ -1510,7 +1510,7 @@ public function getPurgeState() /** * Sets purge_state - * @param string $purge_state + * @param string $purge_state * @return $this */ public function setPurgeState($purge_state) @@ -1636,7 +1636,7 @@ public function getSignerCanSignOnMobile() /** * Sets signer_can_sign_on_mobile - * @param string $signer_can_sign_on_mobile + * @param string $signer_can_sign_on_mobile * @return $this */ public function setSignerCanSignOnMobile($signer_can_sign_on_mobile) @@ -1783,7 +1783,7 @@ public function getUri() /** * Sets uri - * @param string $uri + * @param string $uri * @return $this */ public function setUri($uri) diff --git a/src/Model/EnvelopeTemplateResults.php b/src/Model/EnvelopeTemplateResults.php index 95d1034b..91e36ac0 100644 --- a/src/Model/EnvelopeTemplateResults.php +++ b/src/Model/EnvelopeTemplateResults.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['envelope_templates'] = isset($data['envelope_templates']) ? $data['envelope_templates'] : null; @@ -310,7 +310,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ diff --git a/src/Model/EnvelopeTransactionStatus.php b/src/Model/EnvelopeTransactionStatus.php index f09d7622..64729b3a 100644 --- a/src/Model/EnvelopeTransactionStatus.php +++ b/src/Model/EnvelopeTransactionStatus.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/EnvelopeTransferRule.php b/src/Model/EnvelopeTransferRule.php index 984fff49..e61ede9b 100644 --- a/src/Model/EnvelopeTransferRule.php +++ b/src/Model/EnvelopeTransferRule.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['carbon_copy_original_owner'] = isset($data['carbon_copy_original_owner']) ? $data['carbon_copy_original_owner'] : null; $this->container['enabled'] = isset($data['enabled']) ? $data['enabled'] : null; @@ -274,7 +274,7 @@ public function getCarbonCopyOriginalOwner() /** * Sets carbon_copy_original_owner * - * @param ?string $carbon_copy_original_owner + * @param ?string $carbon_copy_original_owner * * @return $this */ @@ -298,7 +298,7 @@ public function getEnabled() /** * Sets enabled * - * @param ?string $enabled + * @param ?string $enabled * * @return $this */ @@ -322,7 +322,7 @@ public function getEnvelopeTransferRuleId() /** * Sets envelope_transfer_rule_id * - * @param ?string $envelope_transfer_rule_id + * @param ?string $envelope_transfer_rule_id * * @return $this */ @@ -346,7 +346,7 @@ public function getEventType() /** * Sets event_type * - * @param ?string $event_type + * @param ?string $event_type * * @return $this */ @@ -418,7 +418,7 @@ public function getModifiedDate() /** * Sets modified_date * - * @param ?string $modified_date + * @param ?string $modified_date * * @return $this */ diff --git a/src/Model/EnvelopeTransferRuleInformation.php b/src/Model/EnvelopeTransferRuleInformation.php index cec63a4c..e959bec1 100644 --- a/src/Model/EnvelopeTransferRuleInformation.php +++ b/src/Model/EnvelopeTransferRuleInformation.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['envelope_transfer_rules'] = isset($data['envelope_transfer_rules']) ? $data['envelope_transfer_rules'] : null; @@ -279,7 +279,7 @@ public function getEnvelopeTransferRules() /** * Sets envelope_transfer_rules * - * @param \DocuSign\eSign\Model\EnvelopeTransferRule[] $envelope_transfer_rules + * @param \DocuSign\eSign\Model\EnvelopeTransferRule[] $envelope_transfer_rules * * @return $this */ diff --git a/src/Model/EnvelopeTransferRuleRequest.php b/src/Model/EnvelopeTransferRuleRequest.php index 41b229c2..8a8bde78 100644 --- a/src/Model/EnvelopeTransferRuleRequest.php +++ b/src/Model/EnvelopeTransferRuleRequest.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['carbon_copy_original_owner'] = isset($data['carbon_copy_original_owner']) ? $data['carbon_copy_original_owner'] : null; $this->container['enabled'] = isset($data['enabled']) ? $data['enabled'] : null; @@ -274,7 +274,7 @@ public function getCarbonCopyOriginalOwner() /** * Sets carbon_copy_original_owner * - * @param ?string $carbon_copy_original_owner + * @param ?string $carbon_copy_original_owner * * @return $this */ @@ -298,7 +298,7 @@ public function getEnabled() /** * Sets enabled * - * @param ?string $enabled + * @param ?string $enabled * * @return $this */ @@ -322,7 +322,7 @@ public function getEnvelopeTransferRuleId() /** * Sets envelope_transfer_rule_id * - * @param ?string $envelope_transfer_rule_id + * @param ?string $envelope_transfer_rule_id * * @return $this */ @@ -346,7 +346,7 @@ public function getEventType() /** * Sets event_type * - * @param ?string $event_type + * @param ?string $event_type * * @return $this */ @@ -370,7 +370,7 @@ public function getFromGroups() /** * Sets from_groups * - * @param \DocuSign\eSign\Model\Group[] $from_groups + * @param \DocuSign\eSign\Model\Group[] $from_groups * * @return $this */ @@ -394,7 +394,7 @@ public function getFromUsers() /** * Sets from_users * - * @param \DocuSign\eSign\Model\UserInformation[] $from_users + * @param \DocuSign\eSign\Model\UserInformation[] $from_users * * @return $this */ @@ -418,7 +418,7 @@ public function getModifiedDate() /** * Sets modified_date * - * @param ?string $modified_date + * @param ?string $modified_date * * @return $this */ diff --git a/src/Model/EnvelopeUpdateSummary.php b/src/Model/EnvelopeUpdateSummary.php index 7a538212..506f5ae4 100644 --- a/src/Model/EnvelopeUpdateSummary.php +++ b/src/Model/EnvelopeUpdateSummary.php @@ -200,9 +200,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -217,7 +217,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_envelope_status'] = isset($data['bulk_envelope_status']) ? $data['bulk_envelope_status'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; @@ -339,7 +339,7 @@ public function getListCustomFieldUpdateResults() /** * Sets list_custom_field_update_results * - * @param \DocuSign\eSign\Model\ListCustomField[] $list_custom_field_update_results + * @param \DocuSign\eSign\Model\ListCustomField[] $list_custom_field_update_results * * @return $this */ @@ -387,7 +387,7 @@ public function getPurgeState() /** * Sets purge_state * - * @param ?string $purge_state + * @param ?string $purge_state * * @return $this */ @@ -411,7 +411,7 @@ public function getRecipientUpdateResults() /** * Sets recipient_update_results * - * @param \DocuSign\eSign\Model\RecipientUpdateResponse[] $recipient_update_results + * @param \DocuSign\eSign\Model\RecipientUpdateResponse[] $recipient_update_results * * @return $this */ @@ -435,7 +435,7 @@ public function getTabUpdateResults() /** * Sets tab_update_results * - * @param \DocuSign\eSign\Model\Tabs $tab_update_results + * @param \DocuSign\eSign\Model\Tabs $tab_update_results * * @return $this */ @@ -459,7 +459,7 @@ public function getTextCustomFieldUpdateResults() /** * Sets text_custom_field_update_results * - * @param \DocuSign\eSign\Model\TextCustomField[] $text_custom_field_update_results + * @param \DocuSign\eSign\Model\TextCustomField[] $text_custom_field_update_results * * @return $this */ diff --git a/src/Model/EnvelopeViewDocumentSettings.php b/src/Model/EnvelopeViewDocumentSettings.php index a450cab7..ebb61353 100644 --- a/src/Model/EnvelopeViewDocumentSettings.php +++ b/src/Model/EnvelopeViewDocumentSettings.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show_edit_documents'] = isset($data['show_edit_documents']) ? $data['show_edit_documents'] : null; $this->container['show_edit_document_visibility'] = isset($data['show_edit_document_visibility']) ? $data['show_edit_document_visibility'] : null; @@ -237,7 +237,7 @@ public function getShowEditDocuments() /** * Sets show_edit_documents * - * @param ?string $show_edit_documents + * @param ?string $show_edit_documents * * @return $this */ @@ -261,7 +261,7 @@ public function getShowEditDocumentVisibility() /** * Sets show_edit_document_visibility * - * @param ?string $show_edit_document_visibility + * @param ?string $show_edit_document_visibility * * @return $this */ @@ -285,7 +285,7 @@ public function getShowEditPages() /** * Sets show_edit_pages * - * @param ?string $show_edit_pages + * @param ?string $show_edit_pages * * @return $this */ @@ -309,7 +309,7 @@ public function getShowSaveAsDocumentCustomField() /** * Sets show_save_as_document_custom_field * - * @param ?string $show_save_as_document_custom_field + * @param ?string $show_save_as_document_custom_field * * @return $this */ diff --git a/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php b/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php index 3318e081..d133bed6 100644 --- a/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php +++ b/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show_envelope_custom_fields'] = isset($data['show_envelope_custom_fields']) ? $data['show_envelope_custom_fields'] : null; } diff --git a/src/Model/EnvelopeViewRecipientSettings.php b/src/Model/EnvelopeViewRecipientSettings.php index 81c20a23..fc029ed9 100644 --- a/src/Model/EnvelopeViewRecipientSettings.php +++ b/src/Model/EnvelopeViewRecipientSettings.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show_bulk_send'] = isset($data['show_bulk_send']) ? $data['show_bulk_send'] : null; $this->container['show_contacts_list'] = isset($data['show_contacts_list']) ? $data['show_contacts_list'] : null; @@ -237,7 +237,7 @@ public function getShowBulkSend() /** * Sets show_bulk_send * - * @param ?string $show_bulk_send + * @param ?string $show_bulk_send * * @return $this */ @@ -261,7 +261,7 @@ public function getShowContactsList() /** * Sets show_contacts_list * - * @param ?string $show_contacts_list + * @param ?string $show_contacts_list * * @return $this */ @@ -285,7 +285,7 @@ public function getShowEditMessage() /** * Sets show_edit_message * - * @param ?string $show_edit_message + * @param ?string $show_edit_message * * @return $this */ @@ -309,7 +309,7 @@ public function getShowEditRecipients() /** * Sets show_edit_recipients * - * @param ?string $show_edit_recipients + * @param ?string $show_edit_recipients * * @return $this */ diff --git a/src/Model/EnvelopeViewRequest.php b/src/Model/EnvelopeViewRequest.php index 5f50aaf4..6dfdfd91 100644 --- a/src/Model/EnvelopeViewRequest.php +++ b/src/Model/EnvelopeViewRequest.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null; $this->container['settings'] = isset($data['settings']) ? $data['settings'] : null; diff --git a/src/Model/EnvelopeViewSettings.php b/src/Model/EnvelopeViewSettings.php index 9d2c5ff0..da923b59 100644 --- a/src/Model/EnvelopeViewSettings.php +++ b/src/Model/EnvelopeViewSettings.php @@ -225,9 +225,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['back_button_action'] = isset($data['back_button_action']) ? $data['back_button_action'] : null; $this->container['document_settings'] = isset($data['document_settings']) ? $data['document_settings'] : null; @@ -297,7 +297,7 @@ public function getBackButtonAction() /** * Sets back_button_action * - * @param ?string $back_button_action + * @param ?string $back_button_action * * @return $this */ @@ -321,7 +321,7 @@ public function getDocumentSettings() /** * Sets document_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewDocumentSettings $document_settings + * @param \DocuSign\eSign\Model\EnvelopeViewDocumentSettings $document_settings * * @return $this */ @@ -345,7 +345,7 @@ public function getEnvelopeCustomFieldSettings() /** * Sets envelope_custom_field_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewEnvelopeCustomFieldSettings $envelope_custom_field_settings + * @param \DocuSign\eSign\Model\EnvelopeViewEnvelopeCustomFieldSettings $envelope_custom_field_settings * * @return $this */ @@ -369,7 +369,7 @@ public function getLockToken() /** * Sets lock_token * - * @param ?string $lock_token + * @param ?string $lock_token * * @return $this */ @@ -393,7 +393,7 @@ public function getRecipientSettings() /** * Sets recipient_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewRecipientSettings $recipient_settings + * @param \DocuSign\eSign\Model\EnvelopeViewRecipientSettings $recipient_settings * * @return $this */ @@ -417,7 +417,7 @@ public function getSendButtonAction() /** * Sets send_button_action * - * @param ?string $send_button_action + * @param ?string $send_button_action * * @return $this */ @@ -441,7 +441,7 @@ public function getShowAdvancedOptions() /** * Sets show_advanced_options * - * @param ?string $show_advanced_options + * @param ?string $show_advanced_options * * @return $this */ @@ -465,7 +465,7 @@ public function getShowBackButton() /** * Sets show_back_button * - * @param ?string $show_back_button + * @param ?string $show_back_button * * @return $this */ @@ -489,7 +489,7 @@ public function getShowDiscardAction() /** * Sets show_discard_action * - * @param ?string $show_discard_action + * @param ?string $show_discard_action * * @return $this */ @@ -513,7 +513,7 @@ public function getShowHeaderActions() /** * Sets show_header_actions * - * @param ?string $show_header_actions + * @param ?string $show_header_actions * * @return $this */ @@ -537,7 +537,7 @@ public function getShowSignNow() /** * Sets show_sign_now * - * @param ?string $show_sign_now + * @param ?string $show_sign_now * * @return $this */ @@ -561,7 +561,7 @@ public function getStartingScreen() /** * Sets starting_screen * - * @param ?string $starting_screen + * @param ?string $starting_screen * * @return $this */ @@ -585,7 +585,7 @@ public function getTaggerSettings() /** * Sets tagger_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewTaggerSettings $tagger_settings + * @param \DocuSign\eSign\Model\EnvelopeViewTaggerSettings $tagger_settings * * @return $this */ @@ -609,7 +609,7 @@ public function getTemplateSettings() /** * Sets template_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewTemplateSettings $template_settings + * @param \DocuSign\eSign\Model\EnvelopeViewTemplateSettings $template_settings * * @return $this */ diff --git a/src/Model/EnvelopeViewTaggerSettings.php b/src/Model/EnvelopeViewTaggerSettings.php index 2d2af10d..5458ca26 100644 --- a/src/Model/EnvelopeViewTaggerSettings.php +++ b/src/Model/EnvelopeViewTaggerSettings.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['palette_default'] = isset($data['palette_default']) ? $data['palette_default'] : null; $this->container['palette_sections'] = isset($data['palette_sections']) ? $data['palette_sections'] : null; diff --git a/src/Model/EnvelopeViewTemplateSettings.php b/src/Model/EnvelopeViewTemplateSettings.php index f548ad5d..bcc4bd12 100644 --- a/src/Model/EnvelopeViewTemplateSettings.php +++ b/src/Model/EnvelopeViewTemplateSettings.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show_matching_templates_prompt'] = isset($data['show_matching_templates_prompt']) ? $data['show_matching_templates_prompt'] : null; } @@ -219,7 +219,7 @@ public function getShowMatchingTemplatesPrompt() /** * Sets show_matching_templates_prompt * - * @param ?string $show_matching_templates_prompt + * @param ?string $show_matching_templates_prompt * * @return $this */ diff --git a/src/Model/EnvelopesInformation.php b/src/Model/EnvelopesInformation.php index 1cdb723f..e42bee89 100644 --- a/src/Model/EnvelopesInformation.php +++ b/src/Model/EnvelopesInformation.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['continuation_token'] = isset($data['continuation_token']) ? $data['continuation_token'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -286,7 +286,7 @@ public function getContinuationToken() /** * Sets continuation_token * - * @param ?string $continuation_token + * @param ?string $continuation_token * * @return $this */ @@ -334,7 +334,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param \DocuSign\eSign\Model\Envelope[] $envelopes + * @param \DocuSign\eSign\Model\Envelope[] $envelopes * * @return $this */ @@ -358,7 +358,7 @@ public function getEnvelopeSearchSource() /** * Sets envelope_search_source * - * @param ?string $envelope_search_source + * @param ?string $envelope_search_source * * @return $this */ @@ -382,7 +382,7 @@ public function getEnvelopeTransactionStatuses() /** * Sets envelope_transaction_statuses * - * @param \DocuSign\eSign\Model\EnvelopeTransactionStatus[] $envelope_transaction_statuses + * @param \DocuSign\eSign\Model\EnvelopeTransactionStatus[] $envelope_transaction_statuses * * @return $this */ @@ -406,7 +406,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ @@ -430,7 +430,7 @@ public function getLastQueriedDateTime() /** * Sets last_queried_date_time * - * @param ?string $last_queried_date_time + * @param ?string $last_queried_date_time * * @return $this */ diff --git a/src/Model/ErrorDetails.php b/src/Model/ErrorDetails.php index 5efafbce..a275c2c0 100644 --- a/src/Model/ErrorDetails.php +++ b/src/Model/ErrorDetails.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_code'] = isset($data['error_code']) ? $data['error_code'] : null; $this->container['message'] = isset($data['message']) ? $data['message'] : null; diff --git a/src/Model/EventNotification.php b/src/Model/EventNotification.php index f032daf8..a8200b48 100644 --- a/src/Model/EventNotification.php +++ b/src/Model/EventNotification.php @@ -261,9 +261,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -278,7 +278,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['delivery_mode'] = isset($data['delivery_mode']) ? $data['delivery_mode'] : null; $this->container['envelope_events'] = isset($data['envelope_events']) ? $data['envelope_events'] : null; @@ -340,7 +340,7 @@ public function getDeliveryMode() /** * Sets delivery_mode * - * @param ?string $delivery_mode + * @param ?string $delivery_mode * * @return $this */ @@ -412,7 +412,7 @@ public function getEvents() /** * Sets events * - * @param ?string[] $events + * @param ?string[] $events * * @return $this */ @@ -556,7 +556,7 @@ public function getIncludeHmac() /** * Sets include_hmac * - * @param ?string $include_hmac + * @param ?string $include_hmac * * @return $this */ @@ -580,7 +580,7 @@ public function getIncludeOAuth() /** * Sets include_o_auth * - * @param ?string $include_o_auth + * @param ?string $include_o_auth * * @return $this */ @@ -652,7 +652,7 @@ public function getIntegratorManaged() /** * Sets integrator_managed * - * @param ?string $integrator_managed + * @param ?string $integrator_managed * * @return $this */ diff --git a/src/Model/EventResult.php b/src/Model/EventResult.php index 80ab8187..66a98d79 100644 --- a/src/Model/EventResult.php +++ b/src/Model/EventResult.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['event_timestamp'] = isset($data['event_timestamp']) ? $data['event_timestamp'] : null; $this->container['failure_description'] = isset($data['failure_description']) ? $data['failure_description'] : null; @@ -238,7 +238,7 @@ public function getEventTimestamp() /** * Sets event_timestamp * - * @param ?string $event_timestamp + * @param ?string $event_timestamp * * @return $this */ @@ -262,7 +262,7 @@ public function getFailureDescription() /** * Sets failure_description * - * @param ?string $failure_description + * @param ?string $failure_description * * @return $this */ @@ -310,7 +310,7 @@ public function getVendorFailureStatusCode() /** * Sets vendor_failure_status_code * - * @param ?string $vendor_failure_status_code + * @param ?string $vendor_failure_status_code * * @return $this */ diff --git a/src/Model/Expirations.php b/src/Model/Expirations.php index 00fe98e6..ace5a004 100644 --- a/src/Model/Expirations.php +++ b/src/Model/Expirations.php @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expire_after'] = isset($data['expire_after']) ? $data['expire_after'] : null; $this->container['expire_enabled'] = isset($data['expire_enabled']) ? $data['expire_enabled'] : null; diff --git a/src/Model/ExtensionData.php b/src/Model/ExtensionData.php index ae282404..83a80098 100644 --- a/src/Model/ExtensionData.php +++ b/src/Model/ExtensionData.php @@ -220,9 +220,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -237,7 +237,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action_contract'] = isset($data['action_contract']) ? $data['action_contract'] : null; $this->container['action_input_key'] = isset($data['action_input_key']) ? $data['action_input_key'] : null; @@ -291,7 +291,7 @@ public function getActionContract() /** * Sets action_contract * - * @param ?string $action_contract + * @param ?string $action_contract * * @return $this */ @@ -315,7 +315,7 @@ public function getActionInputKey() /** * Sets action_input_key * - * @param ?string $action_input_key + * @param ?string $action_input_key * * @return $this */ @@ -339,7 +339,7 @@ public function getActionName() /** * Sets action_name * - * @param ?string $action_name + * @param ?string $action_name * * @return $this */ @@ -363,7 +363,7 @@ public function getApplicationId() /** * Sets application_id * - * @param ?string $application_id + * @param ?string $application_id * * @return $this */ @@ -387,7 +387,7 @@ public function getApplicationName() /** * Sets application_name * - * @param ?string $application_name + * @param ?string $application_name * * @return $this */ @@ -411,7 +411,7 @@ public function getConnectedFieldsData() /** * Sets connected_fields_data * - * @param \DocuSign\eSign\Model\ConnectedData $connected_fields_data + * @param \DocuSign\eSign\Model\ConnectedData $connected_fields_data * * @return $this */ @@ -435,7 +435,7 @@ public function getConnectionInstances() /** * Sets connection_instances * - * @param \DocuSign\eSign\Model\ConnectionInstance[] $connection_instances + * @param \DocuSign\eSign\Model\ConnectionInstance[] $connection_instances * * @return $this */ @@ -459,7 +459,7 @@ public function getExtensionContract() /** * Sets extension_contract * - * @param ?string $extension_contract + * @param ?string $extension_contract * * @return $this */ @@ -483,7 +483,7 @@ public function getExtensionGroupId() /** * Sets extension_group_id * - * @param ?string $extension_group_id + * @param ?string $extension_group_id * * @return $this */ @@ -507,7 +507,7 @@ public function getExtensionName() /** * Sets extension_name * - * @param ?string $extension_name + * @param ?string $extension_name * * @return $this */ @@ -531,7 +531,7 @@ public function getExtensionPolicy() /** * Sets extension_policy * - * @param ?string $extension_policy + * @param ?string $extension_policy * * @return $this */ @@ -555,7 +555,7 @@ public function getPublisherName() /** * Sets publisher_name * - * @param ?string $publisher_name + * @param ?string $publisher_name * * @return $this */ @@ -579,7 +579,7 @@ public function getRequiredForExtension() /** * Sets required_for_extension * - * @param ?string $required_for_extension + * @param ?string $required_for_extension * * @return $this */ diff --git a/src/Model/ExternalClaim.php b/src/Model/ExternalClaim.php index 95160bd2..5d5c4fee 100644 --- a/src/Model/ExternalClaim.php +++ b/src/Model/ExternalClaim.php @@ -173,9 +173,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['acquired_time'] = isset($data['acquired_time']) ? $data['acquired_time'] : null; $this->container['claim_name'] = isset($data['claim_name']) ? $data['claim_name'] : null; @@ -235,7 +235,7 @@ public function getAcquiredTime() /** * Sets acquired_time * - * @param ?string $acquired_time + * @param ?string $acquired_time * * @return $this */ @@ -259,7 +259,7 @@ public function getClaimName() /** * Sets claim_name * - * @param ?string $claim_name + * @param ?string $claim_name * * @return $this */ @@ -283,7 +283,7 @@ public function getProvider() /** * Sets provider * - * @param ?string $provider + * @param ?string $provider * * @return $this */ diff --git a/src/Model/ExternalDocServiceErrorDetails.php b/src/Model/ExternalDocServiceErrorDetails.php index d2e295ea..b616dff8 100644 --- a/src/Model/ExternalDocServiceErrorDetails.php +++ b/src/Model/ExternalDocServiceErrorDetails.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_url'] = isset($data['authentication_url']) ? $data['authentication_url'] : null; $this->container['error_code'] = isset($data['error_code']) ? $data['error_code'] : null; @@ -255,7 +255,7 @@ public function getErrorCode() /** * Sets error_code * - * @param ?string $error_code + * @param ?string $error_code * * @return $this */ @@ -279,7 +279,7 @@ public function getMessage() /** * Sets message * - * @param ?string $message + * @param ?string $message * * @return $this */ diff --git a/src/Model/ExternalDocumentSources.php b/src/Model/ExternalDocumentSources.php index b421d151..206e18a5 100644 --- a/src/Model/ExternalDocumentSources.php +++ b/src/Model/ExternalDocumentSources.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['boxnet_enabled'] = isset($data['boxnet_enabled']) ? $data['boxnet_enabled'] : null; $this->container['boxnet_metadata'] = isset($data['boxnet_metadata']) ? $data['boxnet_metadata'] : null; @@ -274,7 +274,7 @@ public function getBoxnetEnabled() /** * Sets boxnet_enabled * - * @param ?string $boxnet_enabled + * @param ?string $boxnet_enabled * * @return $this */ @@ -322,7 +322,7 @@ public function getDropboxEnabled() /** * Sets dropbox_enabled * - * @param ?string $dropbox_enabled + * @param ?string $dropbox_enabled * * @return $this */ @@ -370,7 +370,7 @@ public function getGoogleDriveEnabled() /** * Sets google_drive_enabled * - * @param ?string $google_drive_enabled + * @param ?string $google_drive_enabled * * @return $this */ @@ -418,7 +418,7 @@ public function getOneDriveEnabled() /** * Sets one_drive_enabled * - * @param ?string $one_drive_enabled + * @param ?string $one_drive_enabled * * @return $this */ @@ -466,7 +466,7 @@ public function getSalesforceEnabled() /** * Sets salesforce_enabled * - * @param ?string $salesforce_enabled + * @param ?string $salesforce_enabled * * @return $this */ diff --git a/src/Model/ExternalFile.php b/src/Model/ExternalFile.php index 0408b548..8bcb3268 100644 --- a/src/Model/ExternalFile.php +++ b/src/Model/ExternalFile.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date'] = isset($data['date']) ? $data['date'] : null; $this->container['has_composite_template'] = isset($data['has_composite_template']) ? $data['has_composite_template'] : null; @@ -274,7 +274,7 @@ public function getDate() /** * Sets date * - * @param ?string $date + * @param ?string $date * * @return $this */ @@ -298,7 +298,7 @@ public function getHasCompositeTemplate() /** * Sets has_composite_template * - * @param ?string $has_composite_template + * @param ?string $has_composite_template * * @return $this */ @@ -322,7 +322,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -346,7 +346,7 @@ public function getImg() /** * Sets img * - * @param ?string $img + * @param ?string $img * * @return $this */ @@ -370,7 +370,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -394,7 +394,7 @@ public function getOwnerName() /** * Sets owner_name * - * @param ?string $owner_name + * @param ?string $owner_name * * @return $this */ @@ -442,7 +442,7 @@ public function getSupported() /** * Sets supported * - * @param ?string $supported + * @param ?string $supported * * @return $this */ @@ -466,7 +466,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ @@ -490,7 +490,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/ExternalFolder.php b/src/Model/ExternalFolder.php index 8178fd92..a10a9839 100644 --- a/src/Model/ExternalFolder.php +++ b/src/Model/ExternalFolder.php @@ -210,9 +210,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -227,7 +227,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -327,7 +327,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -351,7 +351,7 @@ public function getItems() /** * Sets items * - * @param \DocuSign\eSign\Model\ExternalFile[] $items + * @param \DocuSign\eSign\Model\ExternalFile[] $items * * @return $this */ @@ -375,7 +375,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -471,7 +471,7 @@ public function getSkyDriveSkipToken() /** * Sets sky_drive_skip_token * - * @param ?string $sky_drive_skip_token + * @param ?string $sky_drive_skip_token * * @return $this */ diff --git a/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php b/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php index 89d6fca1..9633f8d3 100644 --- a/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php +++ b/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['id_verification'] = isset($data['id_verification']) ? $data['id_verification'] : null; @@ -261,7 +261,7 @@ public function getIdVerification() /** * Sets id_verification * - * @param ?string $id_verification + * @param ?string $id_verification * * @return $this */ @@ -285,7 +285,7 @@ public function getKba() /** * Sets kba * - * @param ?string $kba + * @param ?string $kba * * @return $this */ @@ -309,7 +309,7 @@ public function getPhone() /** * Sets phone * - * @param ?string $phone + * @param ?string $phone * * @return $this */ diff --git a/src/Model/FavoriteTemplatesContentItem.php b/src/Model/FavoriteTemplatesContentItem.php index 765363e8..66da11a7 100644 --- a/src/Model/FavoriteTemplatesContentItem.php +++ b/src/Model/FavoriteTemplatesContentItem.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['favorited_date'] = isset($data['favorited_date']) ? $data['favorited_date'] : null; @@ -255,7 +255,7 @@ public function getFavoritedDate() /** * Sets favorited_date * - * @param ?string $favorited_date + * @param ?string $favorited_date * * @return $this */ diff --git a/src/Model/FavoriteTemplatesInfo.php b/src/Model/FavoriteTemplatesInfo.php index 39a37599..7dd38aec 100644 --- a/src/Model/FavoriteTemplatesInfo.php +++ b/src/Model/FavoriteTemplatesInfo.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['favorite_templates'] = isset($data['favorite_templates']) ? $data['favorite_templates'] : null; @@ -255,7 +255,7 @@ public function getFavoriteTemplates() /** * Sets favorite_templates * - * @param \DocuSign\eSign\Model\FavoriteTemplatesContentItem[] $favorite_templates + * @param \DocuSign\eSign\Model\FavoriteTemplatesContentItem[] $favorite_templates * * @return $this */ @@ -279,7 +279,7 @@ public function getTemplatesUpdatedCount() /** * Sets templates_updated_count * - * @param ?int $templates_updated_count + * @param ?int $templates_updated_count * * @return $this */ diff --git a/src/Model/FeatureAvailableMetadata.php b/src/Model/FeatureAvailableMetadata.php index 5859c34d..6a692d16 100644 --- a/src/Model/FeatureAvailableMetadata.php +++ b/src/Model/FeatureAvailableMetadata.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['availabilty'] = isset($data['availabilty']) ? $data['availabilty'] : null; $this->container['feature_name'] = isset($data['feature_name']) ? $data['feature_name'] : null; @@ -225,7 +225,7 @@ public function getAvailabilty() /** * Sets availabilty * - * @param ?string $availabilty + * @param ?string $availabilty * * @return $this */ @@ -249,7 +249,7 @@ public function getFeatureName() /** * Sets feature_name * - * @param ?string $feature_name + * @param ?string $feature_name * * @return $this */ diff --git a/src/Model/FeatureSet.php b/src/Model/FeatureSet.php index 188a9021..4837c1b6 100644 --- a/src/Model/FeatureSet.php +++ b/src/Model/FeatureSet.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency_feature_set_prices'] = isset($data['currency_feature_set_prices']) ? $data['currency_feature_set_prices'] : null; $this->container['envelope_fee'] = isset($data['envelope_fee']) ? $data['envelope_fee'] : null; @@ -292,7 +292,7 @@ public function getEnvelopeFee() /** * Sets envelope_fee * - * @param ?string $envelope_fee + * @param ?string $envelope_fee * * @return $this */ @@ -340,7 +340,7 @@ public function getFixedFee() /** * Sets fixed_fee * - * @param ?string $fixed_fee + * @param ?string $fixed_fee * * @return $this */ @@ -388,7 +388,7 @@ public function getIsActive() /** * Sets is_active * - * @param ?string $is_active + * @param ?string $is_active * * @return $this */ @@ -436,7 +436,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/FileType.php b/src/Model/FileType.php index 7b0cdf87..ad2e180b 100644 --- a/src/Model/FileType.php +++ b/src/Model/FileType.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['file_extension'] = isset($data['file_extension']) ? $data['file_extension'] : null; $this->container['mime_type'] = isset($data['mime_type']) ? $data['mime_type'] : null; diff --git a/src/Model/FileTypeList.php b/src/Model/FileTypeList.php index 7849b6df..4e8f50e4 100644 --- a/src/Model/FileTypeList.php +++ b/src/Model/FileTypeList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['file_types'] = isset($data['file_types']) ? $data['file_types'] : null; } diff --git a/src/Model/Filter.php b/src/Model/Filter.php index 9b8e3970..38a98a29 100644 --- a/src/Model/Filter.php +++ b/src/Model/Filter.php @@ -211,9 +211,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -228,7 +228,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action_required'] = isset($data['action_required']) ? $data['action_required'] : null; $this->container['expires'] = isset($data['expires']) ? $data['expires'] : null; @@ -304,7 +304,7 @@ public function getExpires() /** * Sets expires * - * @param ?string $expires + * @param ?string $expires * * @return $this */ @@ -328,7 +328,7 @@ public function getFolderIds() /** * Sets folder_ids * - * @param ?string $folder_ids + * @param ?string $folder_ids * * @return $this */ @@ -352,7 +352,7 @@ public function getFromDateTime() /** * Sets from_date_time * - * @param ?string $from_date_time + * @param ?string $from_date_time * * @return $this */ @@ -376,7 +376,7 @@ public function getIsTemplate() /** * Sets is_template * - * @param ?string $is_template + * @param ?string $is_template * * @return $this */ @@ -400,7 +400,7 @@ public function getOrder() /** * Sets order * - * @param ?string $order + * @param ?string $order * * @return $this */ @@ -424,7 +424,7 @@ public function getOrderBy() /** * Sets order_by * - * @param ?string $order_by + * @param ?string $order_by * * @return $this */ @@ -448,7 +448,7 @@ public function getSearchTarget() /** * Sets search_target * - * @param ?string $search_target + * @param ?string $search_target * * @return $this */ @@ -472,7 +472,7 @@ public function getSearchText() /** * Sets search_text * - * @param ?string $search_text + * @param ?string $search_text * * @return $this */ diff --git a/src/Model/FirstName.php b/src/Model/FirstName.php index 8dc0f8b6..c232faa2 100644 --- a/src/Model/FirstName.php +++ b/src/Model/FirstName.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1366,7 +1366,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1390,7 +1390,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1510,7 +1510,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1654,7 +1654,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1822,7 +1822,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1870,7 +1870,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2110,7 +2110,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2134,7 +2134,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2254,7 +2254,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2446,7 +2446,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2590,7 +2590,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Folder.php b/src/Model/Folder.php index a4a8317c..7ccab427 100644 --- a/src/Model/Folder.php +++ b/src/Model/Folder.php @@ -231,9 +231,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -248,7 +248,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['filter'] = isset($data['filter']) ? $data['filter'] : null; @@ -352,7 +352,7 @@ public function getFolderId() /** * Sets folder_id * - * @param ?string $folder_id + * @param ?string $folder_id * * @return $this */ @@ -424,7 +424,7 @@ public function getHasAccess() /** * Sets has_access * - * @param ?string $has_access + * @param ?string $has_access * * @return $this */ @@ -448,7 +448,7 @@ public function getHasSubFolders() /** * Sets has_sub_folders * - * @param ?string $has_sub_folders + * @param ?string $has_sub_folders * * @return $this */ @@ -472,7 +472,7 @@ public function getItemCount() /** * Sets item_count * - * @param ?string $item_count + * @param ?string $item_count * * @return $this */ @@ -496,7 +496,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -544,7 +544,7 @@ public function getParentFolderId() /** * Sets parent_folder_id * - * @param ?string $parent_folder_id + * @param ?string $parent_folder_id * * @return $this */ @@ -568,7 +568,7 @@ public function getParentFolderUri() /** * Sets parent_folder_uri * - * @param ?string $parent_folder_uri + * @param ?string $parent_folder_uri * * @return $this */ @@ -592,7 +592,7 @@ public function getSubFolderCount() /** * Sets sub_folder_count * - * @param ?string $sub_folder_count + * @param ?string $sub_folder_count * * @return $this */ @@ -616,7 +616,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ @@ -640,7 +640,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/FolderItem.php b/src/Model/FolderItem.php index 61696ba5..63892439 100644 --- a/src/Model/FolderItem.php +++ b/src/Model/FolderItem.php @@ -183,9 +183,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['completed_date_time'] = isset($data['completed_date_time']) ? $data['completed_date_time'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -319,7 +319,7 @@ public function getDescription() /** * Sets description - * @param string $description + * @param string $description * @return $this */ public function setDescription($description) @@ -403,7 +403,7 @@ public function getIsSignatureProviderEnvelope() /** * Sets is_signature_provider_envelope - * @param string $is_signature_provider_envelope + * @param string $is_signature_provider_envelope * @return $this */ public function setIsSignatureProviderEnvelope($is_signature_provider_envelope) @@ -424,7 +424,7 @@ public function getLastModified() /** * Sets last_modified - * @param string $last_modified + * @param string $last_modified * @return $this */ public function setLastModified($last_modified) @@ -445,7 +445,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) @@ -487,7 +487,7 @@ public function getPageCount() /** * Sets page_count - * @param int $page_count + * @param int $page_count * @return $this */ public function setPageCount($page_count) @@ -508,7 +508,7 @@ public function getPassword() /** * Sets password - * @param string $password + * @param string $password * @return $this */ public function setPassword($password) @@ -529,7 +529,7 @@ public function getSenderEmail() /** * Sets sender_email - * @param string $sender_email + * @param string $sender_email * @return $this */ public function setSenderEmail($sender_email) @@ -634,7 +634,7 @@ public function getSubject() /** * Sets subject - * @param string $subject + * @param string $subject * @return $this */ public function setSubject($subject) @@ -676,7 +676,7 @@ public function getUri() /** * Sets uri - * @param string $uri + * @param string $uri * @return $this */ public function setUri($uri) diff --git a/src/Model/FolderItemResponse.php b/src/Model/FolderItemResponse.php index 731f14f2..547e5173 100644 --- a/src/Model/FolderItemResponse.php +++ b/src/Model/FolderItemResponse.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['folder_items'] = isset($data['folder_items']) ? $data['folder_items'] : null; @@ -400,7 +400,7 @@ public function getTotalRows() /** * Sets total_rows * - * @param ?string $total_rows + * @param ?string $total_rows * * @return $this */ diff --git a/src/Model/FolderItemV2.php b/src/Model/FolderItemV2.php index 80d2b9f5..71ab0969 100644 --- a/src/Model/FolderItemV2.php +++ b/src/Model/FolderItemV2.php @@ -261,9 +261,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -278,7 +278,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['completed_date_time'] = isset($data['completed_date_time']) ? $data['completed_date_time'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -460,7 +460,7 @@ public function getFolderId() /** * Sets folder_id * - * @param ?string $folder_id + * @param ?string $folder_id * * @return $this */ @@ -484,7 +484,7 @@ public function getFolderUri() /** * Sets folder_uri * - * @param ?string $folder_uri + * @param ?string $folder_uri * * @return $this */ @@ -556,7 +556,7 @@ public function getOwnerName() /** * Sets owner_name * - * @param ?string $owner_name + * @param ?string $owner_name * * @return $this */ @@ -628,7 +628,7 @@ public function getSenderCompany() /** * Sets sender_company * - * @param ?string $sender_company + * @param ?string $sender_company * * @return $this */ @@ -652,7 +652,7 @@ public function getSenderEmail() /** * Sets sender_email * - * @param ?string $sender_email + * @param ?string $sender_email * * @return $this */ @@ -676,7 +676,7 @@ public function getSenderName() /** * Sets sender_name * - * @param ?string $sender_name + * @param ?string $sender_name * * @return $this */ @@ -700,7 +700,7 @@ public function getSenderUserId() /** * Sets sender_user_id * - * @param ?string $sender_user_id + * @param ?string $sender_user_id * * @return $this */ @@ -772,7 +772,7 @@ public function getSubject() /** * Sets subject * - * @param ?string $subject + * @param ?string $subject * * @return $this */ @@ -820,7 +820,7 @@ public function getTemplateUri() /** * Sets template_uri * - * @param ?string $template_uri + * @param ?string $template_uri * * @return $this */ diff --git a/src/Model/FolderItemsResponse.php b/src/Model/FolderItemsResponse.php index bf7fca30..5ae15928 100644 --- a/src/Model/FolderItemsResponse.php +++ b/src/Model/FolderItemsResponse.php @@ -195,9 +195,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -212,7 +212,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['envelopes'] = isset($data['envelopes']) ? $data['envelopes'] : null; @@ -285,7 +285,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param \DocuSign\eSign\Model\EnvelopeSummary[] $envelopes + * @param \DocuSign\eSign\Model\EnvelopeSummary[] $envelopes * * @return $this */ @@ -309,7 +309,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ diff --git a/src/Model/FolderSharedItem.php b/src/Model/FolderSharedItem.php index bd378e92..daf91eaa 100644 --- a/src/Model/FolderSharedItem.php +++ b/src/Model/FolderSharedItem.php @@ -227,7 +227,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['folder_id'] = isset($data['folder_id']) ? $data['folder_id'] : null; diff --git a/src/Model/FoldersRequest.php b/src/Model/FoldersRequest.php index f1f60d00..f89ae918 100644 --- a/src/Model/FoldersRequest.php +++ b/src/Model/FoldersRequest.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_ids'] = isset($data['envelope_ids']) ? $data['envelope_ids'] : null; $this->container['folders'] = isset($data['folders']) ? $data['folders'] : null; @@ -232,7 +232,7 @@ public function getEnvelopeIds() /** * Sets envelope_ids * - * @param ?string[] $envelope_ids + * @param ?string[] $envelope_ids * * @return $this */ @@ -256,7 +256,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ diff --git a/src/Model/FoldersResponse.php b/src/Model/FoldersResponse.php index 2fa512c4..5cb65f48 100644 --- a/src/Model/FoldersResponse.php +++ b/src/Model/FoldersResponse.php @@ -195,9 +195,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -212,7 +212,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['envelopes'] = isset($data['envelopes']) ? $data['envelopes'] : null; @@ -285,7 +285,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param \DocuSign\eSign\Model\EnvelopeSummary[] $envelopes + * @param \DocuSign\eSign\Model\EnvelopeSummary[] $envelopes * * @return $this */ @@ -309,7 +309,7 @@ public function getFolders() /** * Sets folders * - * @param \DocuSign\eSign\Model\Folder[] $folders + * @param \DocuSign\eSign\Model\Folder[] $folders * * @return $this */ diff --git a/src/Model/ForgottenPasswordInformation.php b/src/Model/ForgottenPasswordInformation.php index 3f7eba97..62c73500 100644 --- a/src/Model/ForgottenPasswordInformation.php +++ b/src/Model/ForgottenPasswordInformation.php @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['forgotten_password_answer1'] = isset($data['forgotten_password_answer1']) ? $data['forgotten_password_answer1'] : null; $this->container['forgotten_password_answer2'] = isset($data['forgotten_password_answer2']) ? $data['forgotten_password_answer2'] : null; diff --git a/src/Model/FormDataItem.php b/src/Model/FormDataItem.php index 9970e300..c906a521 100644 --- a/src/Model/FormDataItem.php +++ b/src/Model/FormDataItem.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['list_selected_value'] = isset($data['list_selected_value']) ? $data['list_selected_value'] : null; @@ -279,7 +279,7 @@ public function getListSelectedValue() /** * Sets list_selected_value * - * @param ?string $list_selected_value + * @param ?string $list_selected_value * * @return $this */ @@ -303,7 +303,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -327,7 +327,7 @@ public function getNumericalValue() /** * Sets numerical_value * - * @param ?string $numerical_value + * @param ?string $numerical_value * * @return $this */ @@ -351,7 +351,7 @@ public function getOriginalNumericalValue() /** * Sets original_numerical_value * - * @param ?string $original_numerical_value + * @param ?string $original_numerical_value * * @return $this */ diff --git a/src/Model/FormulaTab.php b/src/Model/FormulaTab.php index 02346b83..34f6197d 100644 --- a/src/Model/FormulaTab.php +++ b/src/Model/FormulaTab.php @@ -828,7 +828,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/FullName.php b/src/Model/FullName.php index 6c9432e4..1088bf9d 100644 --- a/src/Model/FullName.php +++ b/src/Model/FullName.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1366,7 +1366,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1390,7 +1390,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1510,7 +1510,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1654,7 +1654,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1822,7 +1822,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1870,7 +1870,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2110,7 +2110,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2134,7 +2134,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2254,7 +2254,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2446,7 +2446,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2590,7 +2590,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/GraphicsContext.php b/src/Model/GraphicsContext.php index 8c9783df..11a1bca2 100644 --- a/src/Model/GraphicsContext.php +++ b/src/Model/GraphicsContext.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['fill_color'] = isset($data['fill_color']) ? $data['fill_color'] : null; $this->container['line_color'] = isset($data['line_color']) ? $data['line_color'] : null; @@ -231,7 +231,7 @@ public function getFillColor() /** * Sets fill_color * - * @param ?string $fill_color + * @param ?string $fill_color * * @return $this */ @@ -255,7 +255,7 @@ public function getLineColor() /** * Sets line_color * - * @param ?string $line_color + * @param ?string $line_color * * @return $this */ @@ -279,7 +279,7 @@ public function getLineWeight() /** * Sets line_weight * - * @param ?string $line_weight + * @param ?string $line_weight * * @return $this */ diff --git a/src/Model/Group.php b/src/Model/Group.php index fbb33718..13efbc1e 100644 --- a/src/Model/Group.php +++ b/src/Model/Group.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_type'] = isset($data['access_type']) ? $data['access_type'] : null; $this->container['ds_group_id'] = isset($data['ds_group_id']) ? $data['ds_group_id'] : null; @@ -286,7 +286,7 @@ public function getAccessType() /** * Sets access_type * - * @param ?string $access_type + * @param ?string $access_type * * @return $this */ @@ -310,7 +310,7 @@ public function getDsGroupId() /** * Sets ds_group_id * - * @param ?string $ds_group_id + * @param ?string $ds_group_id * * @return $this */ @@ -430,7 +430,7 @@ public function getIsManagedByScim() /** * Sets is_managed_by_scim * - * @param ?bool $is_managed_by_scim + * @param ?bool $is_managed_by_scim * * @return $this */ @@ -454,7 +454,7 @@ public function getLastModifiedOn() /** * Sets last_modified_on * - * @param ?string $last_modified_on + * @param ?string $last_modified_on * * @return $this */ @@ -502,7 +502,7 @@ public function getUserGroupType() /** * Sets user_group_type * - * @param ?string $user_group_type + * @param ?string $user_group_type * * @return $this */ @@ -526,7 +526,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInfo[] $users + * @param \DocuSign\eSign\Model\UserInfo[] $users * * @return $this */ @@ -550,7 +550,7 @@ public function getUsersCount() /** * Sets users_count * - * @param ?string $users_count + * @param ?string $users_count * * @return $this */ diff --git a/src/Model/GroupBrands.php b/src/Model/GroupBrands.php index 12d9b0b8..85f9050c 100644 --- a/src/Model/GroupBrands.php +++ b/src/Model/GroupBrands.php @@ -186,7 +186,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['recipient_brand_id_default'] = isset($data['recipient_brand_id_default']) ? $data['recipient_brand_id_default'] : null; $this->container['sender_brand_id_default'] = isset($data['sender_brand_id_default']) ? $data['sender_brand_id_default'] : null; diff --git a/src/Model/GroupInformation.php b/src/Model/GroupInformation.php index 4b5b5ae9..f91b3968 100644 --- a/src/Model/GroupInformation.php +++ b/src/Model/GroupInformation.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['groups'] = isset($data['groups']) ? $data['groups'] : null; diff --git a/src/Model/IdCheckConfiguration.php b/src/Model/IdCheckConfiguration.php index 1e540674..68d69a1f 100644 --- a/src/Model/IdCheckConfiguration.php +++ b/src/Model/IdCheckConfiguration.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_steps'] = isset($data['auth_steps']) ? $data['auth_steps'] : null; $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; @@ -232,7 +232,7 @@ public function getAuthSteps() /** * Sets auth_steps * - * @param \DocuSign\eSign\Model\IdCheckSecurityStep[] $auth_steps + * @param \DocuSign\eSign\Model\IdCheckSecurityStep[] $auth_steps * * @return $this */ @@ -256,7 +256,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -280,7 +280,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/IdCheckInformationInput.php b/src/Model/IdCheckInformationInput.php index be04f568..0b4d4f11 100644 --- a/src/Model/IdCheckInformationInput.php +++ b/src/Model/IdCheckInformationInput.php @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address_information_input'] = isset($data['address_information_input']) ? $data['address_information_input'] : null; $this->container['dob_information_input'] = isset($data['dob_information_input']) ? $data['dob_information_input'] : null; diff --git a/src/Model/IdCheckSecurityStep.php b/src/Model/IdCheckSecurityStep.php index b6b6bbe5..aa0b0c8b 100644 --- a/src/Model/IdCheckSecurityStep.php +++ b/src/Model/IdCheckSecurityStep.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_type'] = isset($data['auth_type']) ? $data['auth_type'] : null; } @@ -219,7 +219,7 @@ public function getAuthType() /** * Sets auth_type * - * @param ?string $auth_type + * @param ?string $auth_type * * @return $this */ diff --git a/src/Model/IdEvidenceResourceToken.php b/src/Model/IdEvidenceResourceToken.php index 60690b43..5ce3aebc 100644 --- a/src/Model/IdEvidenceResourceToken.php +++ b/src/Model/IdEvidenceResourceToken.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['proof_base_uri'] = isset($data['proof_base_uri']) ? $data['proof_base_uri'] : null; $this->container['resource_token'] = isset($data['resource_token']) ? $data['resource_token'] : null; @@ -225,7 +225,7 @@ public function getProofBaseUri() /** * Sets proof_base_uri * - * @param ?string $proof_base_uri + * @param ?string $proof_base_uri * * @return $this */ @@ -249,7 +249,7 @@ public function getResourceToken() /** * Sets resource_token * - * @param ?string $resource_token + * @param ?string $resource_token * * @return $this */ diff --git a/src/Model/IdEvidenceViewLink.php b/src/Model/IdEvidenceViewLink.php index 5dbb8d94..9a1df413 100644 --- a/src/Model/IdEvidenceViewLink.php +++ b/src/Model/IdEvidenceViewLink.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['view_link'] = isset($data['view_link']) ? $data['view_link'] : null; } @@ -219,7 +219,7 @@ public function getViewLink() /** * Sets view_link * - * @param ?string $view_link + * @param ?string $view_link * * @return $this */ diff --git a/src/Model/InPersonSigner.php b/src/Model/InPersonSigner.php index 79bde557..b95dd9f1 100644 --- a/src/Model/InPersonSigner.php +++ b/src/Model/InPersonSigner.php @@ -641,9 +641,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -658,7 +658,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -868,7 +868,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -892,7 +892,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -916,7 +916,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -940,7 +940,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -1012,7 +1012,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -1036,7 +1036,7 @@ public function getCreationReason() /** * Sets creation_reason * - * @param ?string $creation_reason + * @param ?string $creation_reason * * @return $this */ @@ -1132,7 +1132,7 @@ public function getDefaultRecipient() /** * Sets default_recipient * - * @param ?string $default_recipient + * @param ?string $default_recipient * * @return $this */ @@ -1228,7 +1228,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1252,7 +1252,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1276,7 +1276,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1300,7 +1300,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1324,7 +1324,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -1516,7 +1516,7 @@ public function getHostEmail() /** * Sets host_email * - * @param ?string $host_email + * @param ?string $host_email * * @return $this */ @@ -1732,7 +1732,7 @@ public function getInPersonSigningType() /** * Sets in_person_signing_type * - * @param ?string $in_person_signing_type + * @param ?string $in_person_signing_type * * @return $this */ @@ -1780,7 +1780,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1804,7 +1804,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1828,7 +1828,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1900,7 +1900,7 @@ public function getNotaryId() /** * Sets notary_id * - * @param ?string $notary_id + * @param ?string $notary_id * * @return $this */ @@ -2020,7 +2020,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -2092,7 +2092,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2140,7 +2140,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2164,7 +2164,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -2188,7 +2188,7 @@ public function getRecipientSuppliesTabs() /** * Sets recipient_supplies_tabs * - * @param ?string $recipient_supplies_tabs + * @param ?string $recipient_supplies_tabs * * @return $this */ @@ -2212,7 +2212,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2308,7 +2308,7 @@ public function getRequireSignerCertificate() /** * Sets require_signer_certificate * - * @param ?string $require_signer_certificate + * @param ?string $require_signer_certificate * * @return $this */ @@ -2332,7 +2332,7 @@ public function getRequireSignOnPaper() /** * Sets require_sign_on_paper * - * @param ?string $require_sign_on_paper + * @param ?string $require_sign_on_paper * * @return $this */ @@ -2356,7 +2356,7 @@ public function getRequireUploadSignature() /** * Sets require_upload_signature * - * @param ?string $require_upload_signature + * @param ?string $require_upload_signature * * @return $this */ @@ -2572,7 +2572,7 @@ public function getSignerFirstName() /** * Sets signer_first_name * - * @param ?string $signer_first_name + * @param ?string $signer_first_name * * @return $this */ @@ -2620,7 +2620,7 @@ public function getSignerLastName() /** * Sets signer_last_name * - * @param ?string $signer_last_name + * @param ?string $signer_last_name * * @return $this */ @@ -2932,7 +2932,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2956,7 +2956,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -3052,7 +3052,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -3076,7 +3076,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -3100,7 +3100,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/InitialHere.php b/src/Model/InitialHere.php index 83231f74..6524fa56 100644 --- a/src/Model/InitialHere.php +++ b/src/Model/InitialHere.php @@ -586,9 +586,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -603,7 +603,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -730,7 +730,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -754,7 +754,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -778,7 +778,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1066,7 +1066,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1258,7 +1258,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1282,7 +1282,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1402,7 +1402,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1546,7 +1546,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1570,7 +1570,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1618,7 +1618,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1666,7 +1666,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1714,7 +1714,7 @@ public function getHandDrawRequired() /** * Sets hand_draw_required * - * @param ?string $hand_draw_required + * @param ?string $hand_draw_required * * @return $this */ @@ -1810,7 +1810,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1882,7 +1882,7 @@ public function getOptional() /** * Sets optional * - * @param ?string $optional + * @param ?string $optional * * @return $this */ @@ -2002,7 +2002,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2146,7 +2146,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2218,7 +2218,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2242,7 +2242,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2386,7 +2386,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2434,7 +2434,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2578,7 +2578,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2626,7 +2626,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/InlineTemplate.php b/src/Model/InlineTemplate.php index b8b5030b..6ac3b555 100644 --- a/src/Model/InlineTemplate.php +++ b/src/Model/InlineTemplate.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['custom_fields'] = isset($data['custom_fields']) ? $data['custom_fields'] : null; $this->container['documents'] = isset($data['documents']) ? $data['documents'] : null; diff --git a/src/Model/IntegratedConnectUserInfoList.php b/src/Model/IntegratedConnectUserInfoList.php index a5acb5d3..443c7003 100644 --- a/src/Model/IntegratedConnectUserInfoList.php +++ b/src/Model/IntegratedConnectUserInfoList.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -399,7 +399,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\ConnectUserInfo[] $users + * @param \DocuSign\eSign\Model\ConnectUserInfo[] $users * * @return $this */ diff --git a/src/Model/IntegratedUserInfoList.php b/src/Model/IntegratedUserInfoList.php index 3d82ec7e..1a6ab117 100644 --- a/src/Model/IntegratedUserInfoList.php +++ b/src/Model/IntegratedUserInfoList.php @@ -195,9 +195,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -212,7 +212,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['all_users_selected'] = isset($data['all_users_selected']) ? $data['all_users_selected'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -261,7 +261,7 @@ public function getAllUsersSelected() /** * Sets all_users_selected * - * @param ?string $all_users_selected + * @param ?string $all_users_selected * * @return $this */ @@ -429,7 +429,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInfo[] $users + * @param \DocuSign\eSign\Model\UserInfo[] $users * * @return $this */ diff --git a/src/Model/Intermediary.php b/src/Model/Intermediary.php index 26ca09d0..b08e9327 100644 --- a/src/Model/Intermediary.php +++ b/src/Model/Intermediary.php @@ -541,9 +541,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -558,7 +558,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -748,7 +748,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -772,7 +772,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -796,7 +796,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -820,7 +820,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -868,7 +868,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -892,7 +892,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1060,7 +1060,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1084,7 +1084,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1108,7 +1108,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1132,7 +1132,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1228,7 +1228,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1420,7 +1420,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1588,7 +1588,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -1636,7 +1636,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1660,7 +1660,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1684,7 +1684,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1828,7 +1828,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -1900,7 +1900,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -1948,7 +1948,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1972,7 +1972,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2356,7 +2356,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2380,7 +2380,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2452,7 +2452,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2476,7 +2476,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2500,7 +2500,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/Jurisdiction.php b/src/Model/Jurisdiction.php index e1400e5f..4b25da32 100644 --- a/src/Model/Jurisdiction.php +++ b/src/Model/Jurisdiction.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_system_created_seal'] = isset($data['allow_system_created_seal']) ? $data['allow_system_created_seal'] : null; $this->container['allow_user_uploaded_seal'] = isset($data['allow_user_uploaded_seal']) ? $data['allow_user_uploaded_seal'] : null; @@ -274,7 +274,7 @@ public function getAllowSystemCreatedSeal() /** * Sets allow_system_created_seal * - * @param ?string $allow_system_created_seal + * @param ?string $allow_system_created_seal * * @return $this */ @@ -298,7 +298,7 @@ public function getAllowUserUploadedSeal() /** * Sets allow_user_uploaded_seal * - * @param ?string $allow_user_uploaded_seal + * @param ?string $allow_user_uploaded_seal * * @return $this */ @@ -322,7 +322,7 @@ public function getCommissionIdInSeal() /** * Sets commission_id_in_seal * - * @param ?string $commission_id_in_seal + * @param ?string $commission_id_in_seal * * @return $this */ @@ -346,7 +346,7 @@ public function getCounty() /** * Sets county * - * @param ?string $county + * @param ?string $county * * @return $this */ @@ -370,7 +370,7 @@ public function getCountyInSeal() /** * Sets county_in_seal * - * @param ?string $county_in_seal + * @param ?string $county_in_seal * * @return $this */ @@ -394,7 +394,7 @@ public function getEnabled() /** * Sets enabled * - * @param ?string $enabled + * @param ?string $enabled * * @return $this */ @@ -418,7 +418,7 @@ public function getJurisdictionId() /** * Sets jurisdiction_id * - * @param ?string $jurisdiction_id + * @param ?string $jurisdiction_id * * @return $this */ @@ -442,7 +442,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -466,7 +466,7 @@ public function getNotaryPublicInSeal() /** * Sets notary_public_in_seal * - * @param ?string $notary_public_in_seal + * @param ?string $notary_public_in_seal * * @return $this */ @@ -490,7 +490,7 @@ public function getStateNameInSeal() /** * Sets state_name_in_seal * - * @param ?string $state_name_in_seal + * @param ?string $state_name_in_seal * * @return $this */ diff --git a/src/Model/JurisdictionSummary.php b/src/Model/JurisdictionSummary.php index 4a43fc65..69ef2545 100644 --- a/src/Model/JurisdictionSummary.php +++ b/src/Model/JurisdictionSummary.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorized_for_i_pen'] = isset($data['authorized_for_i_pen']) ? $data['authorized_for_i_pen'] : null; $this->container['authorized_for_ron'] = isset($data['authorized_for_ron']) ? $data['authorized_for_ron'] : null; @@ -237,7 +237,7 @@ public function getAuthorizedForIPen() /** * Sets authorized_for_i_pen * - * @param ?string $authorized_for_i_pen + * @param ?string $authorized_for_i_pen * * @return $this */ @@ -261,7 +261,7 @@ public function getAuthorizedForRon() /** * Sets authorized_for_ron * - * @param ?string $authorized_for_ron + * @param ?string $authorized_for_ron * * @return $this */ @@ -285,7 +285,7 @@ public function getJurisdictionId() /** * Sets jurisdiction_id * - * @param ?string $jurisdiction_id + * @param ?string $jurisdiction_id * * @return $this */ @@ -309,7 +309,7 @@ public function getJurisdictionName() /** * Sets jurisdiction_name * - * @param ?string $jurisdiction_name + * @param ?string $jurisdiction_name * * @return $this */ diff --git a/src/Model/LastName.php b/src/Model/LastName.php index 8740cb60..e4d3be84 100644 --- a/src/Model/LastName.php +++ b/src/Model/LastName.php @@ -636,9 +636,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -653,7 +653,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -790,7 +790,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -814,7 +814,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -838,7 +838,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1126,7 +1126,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1366,7 +1366,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1390,7 +1390,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1510,7 +1510,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1654,7 +1654,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1822,7 +1822,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1870,7 +1870,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1918,7 +1918,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2110,7 +2110,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2134,7 +2134,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2254,7 +2254,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2350,7 +2350,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2422,7 +2422,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2446,7 +2446,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2590,7 +2590,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2638,7 +2638,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2926,7 +2926,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/LinkedExternalPrimaryAccount.php b/src/Model/LinkedExternalPrimaryAccount.php index 3069f27a..7ba7f9ac 100644 --- a/src/Model/LinkedExternalPrimaryAccount.php +++ b/src/Model/LinkedExternalPrimaryAccount.php @@ -215,9 +215,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -232,7 +232,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; $this->container['configuration_id'] = isset($data['configuration_id']) ? $data['configuration_id'] : null; @@ -285,7 +285,7 @@ public function getAccountName() /** * Sets account_name * - * @param ?string $account_name + * @param ?string $account_name * * @return $this */ @@ -309,7 +309,7 @@ public function getConfigurationId() /** * Sets configuration_id * - * @param ?string $configuration_id + * @param ?string $configuration_id * * @return $this */ @@ -333,7 +333,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -357,7 +357,7 @@ public function getExemptMembersOfSameAccountFromAuth() /** * Sets exempt_members_of_same_account_from_auth * - * @param ?string $exempt_members_of_same_account_from_auth + * @param ?string $exempt_members_of_same_account_from_auth * * @return $this */ @@ -381,7 +381,7 @@ public function getLinkId() /** * Sets link_id * - * @param ?string $link_id + * @param ?string $link_id * * @return $this */ @@ -405,7 +405,7 @@ public function getPdfFieldHandlingOption() /** * Sets pdf_field_handling_option * - * @param ?string $pdf_field_handling_option + * @param ?string $pdf_field_handling_option * * @return $this */ @@ -429,7 +429,7 @@ public function getPdfFieldHandlingPrefillTabPermission() /** * Sets pdf_field_handling_prefill_tab_permission * - * @param ?string $pdf_field_handling_prefill_tab_permission + * @param ?string $pdf_field_handling_prefill_tab_permission * * @return $this */ @@ -453,7 +453,7 @@ public function getPdfFieldHandlingStandardInputTabPermission() /** * Sets pdf_field_handling_standard_input_tab_permission * - * @param ?string $pdf_field_handling_standard_input_tab_permission + * @param ?string $pdf_field_handling_standard_input_tab_permission * * @return $this */ @@ -477,7 +477,7 @@ public function getPdfFieldHandlingStandardTabPermission() /** * Sets pdf_field_handling_standard_tab_permission * - * @param ?string $pdf_field_handling_standard_tab_permission + * @param ?string $pdf_field_handling_standard_tab_permission * * @return $this */ @@ -501,7 +501,7 @@ public function getRecipientAuthRequirements() /** * Sets recipient_auth_requirements * - * @param \DocuSign\eSign\Model\ExternalPrimaryAccountRecipientAuthRequirements $recipient_auth_requirements + * @param \DocuSign\eSign\Model\ExternalPrimaryAccountRecipientAuthRequirements $recipient_auth_requirements * * @return $this */ @@ -549,7 +549,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/ListCustomField.php b/src/Model/ListCustomField.php index 1b42f294..943051b2 100644 --- a/src/Model/ListCustomField.php +++ b/src/Model/ListCustomField.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configuration_type'] = isset($data['configuration_type']) ? $data['configuration_type'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -334,7 +334,7 @@ public function getListItems() /** * Sets list_items * - * @param ?string[] $list_items + * @param ?string[] $list_items * * @return $this */ diff --git a/src/Model/ListItem.php b/src/Model/ListItem.php index 3bb749b4..6e5fb29a 100644 --- a/src/Model/ListItem.php +++ b/src/Model/ListItem.php @@ -186,9 +186,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['selected'] = isset($data['selected']) ? $data['selected'] : null; $this->container['selected_metadata'] = isset($data['selected_metadata']) ? $data['selected_metadata'] : null; @@ -322,7 +322,7 @@ public function getTextMetadata() /** * Sets text_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $text_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $text_metadata * * @return $this */ diff --git a/src/Model/LocalePolicy.php b/src/Model/LocalePolicy.php index 0a54904c..fa084673 100644 --- a/src/Model/LocalePolicy.php +++ b/src/Model/LocalePolicy.php @@ -370,9 +370,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -387,7 +387,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address_format'] = isset($data['address_format']) ? $data['address_format'] : null; $this->container['address_format_metadata'] = isset($data['address_format_metadata']) ? $data['address_format_metadata'] : null; @@ -471,7 +471,7 @@ public function getAddressFormat() /** * Sets address_format * - * @param ?string $address_format + * @param ?string $address_format * * @return $this */ @@ -495,7 +495,7 @@ public function getAddressFormatMetadata() /** * Sets address_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $address_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $address_format_metadata * * @return $this */ @@ -519,7 +519,7 @@ public function getAllowRegion() /** * Sets allow_region * - * @param ?string $allow_region + * @param ?string $allow_region * * @return $this */ @@ -543,7 +543,7 @@ public function getCalendarType() /** * Sets calendar_type * - * @param ?string $calendar_type + * @param ?string $calendar_type * * @return $this */ @@ -567,7 +567,7 @@ public function getCalendarTypeMetadata() /** * Sets calendar_type_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $calendar_type_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $calendar_type_metadata * * @return $this */ @@ -591,7 +591,7 @@ public function getCultureName() /** * Sets culture_name * - * @param ?string $culture_name + * @param ?string $culture_name * * @return $this */ @@ -615,7 +615,7 @@ public function getCultureNameMetadata() /** * Sets culture_name_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $culture_name_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $culture_name_metadata * * @return $this */ @@ -639,7 +639,7 @@ public function getCurrencyCode() /** * Sets currency_code * - * @param ?string $currency_code + * @param ?string $currency_code * * @return $this */ @@ -687,7 +687,7 @@ public function getCurrencyNegativeFormat() /** * Sets currency_negative_format * - * @param ?string $currency_negative_format + * @param ?string $currency_negative_format * * @return $this */ @@ -711,7 +711,7 @@ public function getCurrencyNegativeFormatMetadata() /** * Sets currency_negative_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $currency_negative_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $currency_negative_format_metadata * * @return $this */ @@ -735,7 +735,7 @@ public function getCurrencyPositiveFormat() /** * Sets currency_positive_format * - * @param ?string $currency_positive_format + * @param ?string $currency_positive_format * * @return $this */ @@ -759,7 +759,7 @@ public function getCurrencyPositiveFormatMetadata() /** * Sets currency_positive_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $currency_positive_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $currency_positive_format_metadata * * @return $this */ @@ -783,7 +783,7 @@ public function getCustomDateFormat() /** * Sets custom_date_format * - * @param ?string $custom_date_format + * @param ?string $custom_date_format * * @return $this */ @@ -807,7 +807,7 @@ public function getCustomSignDateFormat() /** * Sets custom_sign_date_format * - * @param ?string $custom_sign_date_format + * @param ?string $custom_sign_date_format * * @return $this */ @@ -831,7 +831,7 @@ public function getCustomSignTimeFormat() /** * Sets custom_sign_time_format * - * @param ?string $custom_sign_time_format + * @param ?string $custom_sign_time_format * * @return $this */ @@ -855,7 +855,7 @@ public function getCustomTimeFormat() /** * Sets custom_time_format * - * @param ?string $custom_time_format + * @param ?string $custom_time_format * * @return $this */ @@ -879,7 +879,7 @@ public function getDateFormat() /** * Sets date_format * - * @param ?string $date_format + * @param ?string $date_format * * @return $this */ @@ -903,7 +903,7 @@ public function getDateFormatMetadata() /** * Sets date_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $date_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $date_format_metadata * * @return $this */ @@ -927,7 +927,7 @@ public function getEffectiveAddressFormat() /** * Sets effective_address_format * - * @param ?string $effective_address_format + * @param ?string $effective_address_format * * @return $this */ @@ -951,7 +951,7 @@ public function getEffectiveCalendarType() /** * Sets effective_calendar_type * - * @param ?string $effective_calendar_type + * @param ?string $effective_calendar_type * * @return $this */ @@ -975,7 +975,7 @@ public function getEffectiveCurrencyCode() /** * Sets effective_currency_code * - * @param ?string $effective_currency_code + * @param ?string $effective_currency_code * * @return $this */ @@ -999,7 +999,7 @@ public function getEffectiveCurrencyNegativeFormat() /** * Sets effective_currency_negative_format * - * @param ?string $effective_currency_negative_format + * @param ?string $effective_currency_negative_format * * @return $this */ @@ -1023,7 +1023,7 @@ public function getEffectiveCurrencyPositiveFormat() /** * Sets effective_currency_positive_format * - * @param ?string $effective_currency_positive_format + * @param ?string $effective_currency_positive_format * * @return $this */ @@ -1047,7 +1047,7 @@ public function getEffectiveCustomDateFormat() /** * Sets effective_custom_date_format * - * @param ?string $effective_custom_date_format + * @param ?string $effective_custom_date_format * * @return $this */ @@ -1071,7 +1071,7 @@ public function getEffectiveCustomTimeFormat() /** * Sets effective_custom_time_format * - * @param ?string $effective_custom_time_format + * @param ?string $effective_custom_time_format * * @return $this */ @@ -1095,7 +1095,7 @@ public function getEffectiveDateFormat() /** * Sets effective_date_format * - * @param ?string $effective_date_format + * @param ?string $effective_date_format * * @return $this */ @@ -1119,7 +1119,7 @@ public function getEffectiveInitialFormat() /** * Sets effective_initial_format * - * @param ?string $effective_initial_format + * @param ?string $effective_initial_format * * @return $this */ @@ -1143,7 +1143,7 @@ public function getEffectiveNameFormat() /** * Sets effective_name_format * - * @param ?string $effective_name_format + * @param ?string $effective_name_format * * @return $this */ @@ -1167,7 +1167,7 @@ public function getEffectiveTimeFormat() /** * Sets effective_time_format * - * @param ?string $effective_time_format + * @param ?string $effective_time_format * * @return $this */ @@ -1191,7 +1191,7 @@ public function getEffectiveTimeZone() /** * Sets effective_time_zone * - * @param ?string $effective_time_zone + * @param ?string $effective_time_zone * * @return $this */ @@ -1215,7 +1215,7 @@ public function getInitialFormat() /** * Sets initial_format * - * @param ?string $initial_format + * @param ?string $initial_format * * @return $this */ @@ -1239,7 +1239,7 @@ public function getInitialFormatMetadata() /** * Sets initial_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $initial_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $initial_format_metadata * * @return $this */ @@ -1263,7 +1263,7 @@ public function getNameFormat() /** * Sets name_format * - * @param ?string $name_format + * @param ?string $name_format * * @return $this */ @@ -1287,7 +1287,7 @@ public function getNameFormatMetadata() /** * Sets name_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $name_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $name_format_metadata * * @return $this */ @@ -1311,7 +1311,7 @@ public function getSignDateFormat() /** * Sets sign_date_format * - * @param ?string $sign_date_format + * @param ?string $sign_date_format * * @return $this */ @@ -1359,7 +1359,7 @@ public function getSignTimeFormat() /** * Sets sign_time_format * - * @param ?string $sign_time_format + * @param ?string $sign_time_format * * @return $this */ @@ -1407,7 +1407,7 @@ public function getTimeFormat() /** * Sets time_format * - * @param ?string $time_format + * @param ?string $time_format * * @return $this */ @@ -1431,7 +1431,7 @@ public function getTimeFormatMetadata() /** * Sets time_format_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $time_format_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $time_format_metadata * * @return $this */ @@ -1455,7 +1455,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param ?string $time_zone + * @param ?string $time_zone * * @return $this */ @@ -1479,7 +1479,7 @@ public function getTimeZoneMetadata() /** * Sets time_zone_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $time_zone_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $time_zone_metadata * * @return $this */ diff --git a/src/Model/LocalePolicyTab.php b/src/Model/LocalePolicyTab.php index 491f448c..7d3e1f60 100644 --- a/src/Model/LocalePolicyTab.php +++ b/src/Model/LocalePolicyTab.php @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address_format'] = isset($data['address_format']) ? $data['address_format'] : null; $this->container['calendar_type'] = isset($data['calendar_type']) ? $data['calendar_type'] : null; diff --git a/src/Model/LockInformation.php b/src/Model/LockInformation.php index a08d2378..c1e793d8 100644 --- a/src/Model/LockInformation.php +++ b/src/Model/LockInformation.php @@ -195,9 +195,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -212,7 +212,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['lock_duration_in_seconds'] = isset($data['lock_duration_in_seconds']) ? $data['lock_duration_in_seconds'] : null; diff --git a/src/Model/LockRequest.php b/src/Model/LockRequest.php index b1a8cecb..0400d550 100644 --- a/src/Model/LockRequest.php +++ b/src/Model/LockRequest.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['lock_duration_in_seconds'] = isset($data['lock_duration_in_seconds']) ? $data['lock_duration_in_seconds'] : null; $this->container['locked_by_app'] = isset($data['locked_by_app']) ? $data['locked_by_app'] : null; @@ -316,7 +316,7 @@ public function getTemplatePassword() /** * Sets template_password * - * @param ?string $template_password + * @param ?string $template_password * * @return $this */ diff --git a/src/Model/LoginAccount.php b/src/Model/LoginAccount.php index 4a71d894..1acdef7d 100644 --- a/src/Model/LoginAccount.php +++ b/src/Model/LoginAccount.php @@ -210,9 +210,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -227,7 +227,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['account_id_guid'] = isset($data['account_id_guid']) ? $data['account_id_guid'] : null; @@ -495,7 +495,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/LoginInformation.php b/src/Model/LoginInformation.php index e67f8f49..c321f214 100644 --- a/src/Model/LoginInformation.php +++ b/src/Model/LoginInformation.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_password'] = isset($data['api_password']) ? $data['api_password'] : null; $this->container['login_accounts'] = isset($data['login_accounts']) ? $data['login_accounts'] : null; diff --git a/src/Model/MatchBox.php b/src/Model/MatchBox.php index d130b766..5472888f 100644 --- a/src/Model/MatchBox.php +++ b/src/Model/MatchBox.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['height'] = isset($data['height']) ? $data['height'] : null; $this->container['page_number'] = isset($data['page_number']) ? $data['page_number'] : null; diff --git a/src/Model/MemberGroupSharedItem.php b/src/Model/MemberGroupSharedItem.php index 21e7cf13..22b6a24b 100644 --- a/src/Model/MemberGroupSharedItem.php +++ b/src/Model/MemberGroupSharedItem.php @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['group'] = isset($data['group']) ? $data['group'] : null; diff --git a/src/Model/MemberSharedItems.php b/src/Model/MemberSharedItems.php index e0817db9..2bbddd89 100644 --- a/src/Model/MemberSharedItems.php +++ b/src/Model/MemberSharedItems.php @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelopes'] = isset($data['envelopes']) ? $data['envelopes'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/MergeField.php b/src/Model/MergeField.php index 26d85ce0..41ee0403 100644 --- a/src/Model/MergeField.php +++ b/src/Model/MergeField.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_sender_to_edit'] = isset($data['allow_sender_to_edit']) ? $data['allow_sender_to_edit'] : null; $this->container['allow_sender_to_edit_metadata'] = isset($data['allow_sender_to_edit_metadata']) ? $data['allow_sender_to_edit_metadata'] : null; @@ -406,7 +406,7 @@ public function getPathExtended() /** * Sets path_extended * - * @param \DocuSign\eSign\Model\PathExtendedElement[] $path_extended + * @param \DocuSign\eSign\Model\PathExtendedElement[] $path_extended * * @return $this */ diff --git a/src/Model/MobileNotifierConfiguration.php b/src/Model/MobileNotifierConfiguration.php index 4c991933..70d82d36 100644 --- a/src/Model/MobileNotifierConfiguration.php +++ b/src/Model/MobileNotifierConfiguration.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['device_id'] = isset($data['device_id']) ? $data['device_id'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -231,7 +231,7 @@ public function getDeviceId() /** * Sets device_id * - * @param ?string $device_id + * @param ?string $device_id * * @return $this */ @@ -279,7 +279,7 @@ public function getPlatform() /** * Sets platform * - * @param ?string $platform + * @param ?string $platform * * @return $this */ diff --git a/src/Model/MobileNotifierConfigurationInformation.php b/src/Model/MobileNotifierConfigurationInformation.php index 3e575df3..bcb795c6 100644 --- a/src/Model/MobileNotifierConfigurationInformation.php +++ b/src/Model/MobileNotifierConfigurationInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['mobile_notifier_configurations'] = isset($data['mobile_notifier_configurations']) ? $data['mobile_notifier_configurations'] : null; } @@ -219,7 +219,7 @@ public function getMobileNotifierConfigurations() /** * Sets mobile_notifier_configurations * - * @param \DocuSign\eSign\Model\MobileNotifierConfiguration[] $mobile_notifier_configurations + * @param \DocuSign\eSign\Model\MobileNotifierConfiguration[] $mobile_notifier_configurations * * @return $this */ diff --git a/src/Model/ModelList.php b/src/Model/ModelList.php index bba780d1..f84972cf 100644 --- a/src/Model/ModelList.php +++ b/src/Model/ModelList.php @@ -721,9 +721,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -738,7 +738,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -892,7 +892,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -916,7 +916,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -940,7 +940,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1228,7 +1228,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1468,7 +1468,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1492,7 +1492,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1612,7 +1612,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1756,7 +1756,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1924,7 +1924,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1972,7 +1972,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2020,7 +2020,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2188,7 +2188,7 @@ public function getListSelectedValue() /** * Sets list_selected_value * - * @param ?string $list_selected_value + * @param ?string $list_selected_value * * @return $this */ @@ -2332,7 +2332,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2476,7 +2476,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2788,7 +2788,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -2860,7 +2860,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2932,7 +2932,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2956,7 +2956,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3100,7 +3100,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3148,7 +3148,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3292,7 +3292,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3436,7 +3436,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Money.php b/src/Model/Money.php index cb1c71df..50fe17c3 100644 --- a/src/Model/Money.php +++ b/src/Model/Money.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount_in_base_unit'] = isset($data['amount_in_base_unit']) ? $data['amount_in_base_unit'] : null; $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; @@ -232,7 +232,7 @@ public function getAmountInBaseUnit() /** * Sets amount_in_base_unit * - * @param ?string $amount_in_base_unit + * @param ?string $amount_in_base_unit * * @return $this */ @@ -256,7 +256,7 @@ public function getCurrency() /** * Sets currency * - * @param ?string $currency + * @param ?string $currency * * @return $this */ @@ -280,7 +280,7 @@ public function getDisplayAmount() /** * Sets display_amount * - * @param ?string $display_amount + * @param ?string $display_amount * * @return $this */ diff --git a/src/Model/NameValue.php b/src/Model/NameValue.php index 2b435c39..c45be885 100644 --- a/src/Model/NameValue.php +++ b/src/Model/NameValue.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Model/NewAccountDefinition.php b/src/Model/NewAccountDefinition.php index c805e171..4b6b7322 100644 --- a/src/Model/NewAccountDefinition.php +++ b/src/Model/NewAccountDefinition.php @@ -245,9 +245,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -262,7 +262,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; $this->container['account_settings'] = isset($data['account_settings']) ? $data['account_settings'] : null; @@ -489,7 +489,7 @@ public function getEnablePreAuth() /** * Sets enable_pre_auth * - * @param ?string $enable_pre_auth + * @param ?string $enable_pre_auth * * @return $this */ @@ -513,7 +513,7 @@ public function getEnvelopePartitionId() /** * Sets envelope_partition_id * - * @param ?string $envelope_partition_id + * @param ?string $envelope_partition_id * * @return $this */ @@ -561,7 +561,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param ?string $payment_method + * @param ?string $payment_method * * @return $this */ @@ -585,7 +585,7 @@ public function getPaymentProcessor() /** * Sets payment_processor * - * @param ?string $payment_processor + * @param ?string $payment_processor * * @return $this */ @@ -657,7 +657,7 @@ public function getProcessPayment() /** * Sets process_payment * - * @param ?string $process_payment + * @param ?string $process_payment * * @return $this */ @@ -729,7 +729,7 @@ public function getTaxExemptId() /** * Sets tax_exempt_id * - * @param ?string $tax_exempt_id + * @param ?string $tax_exempt_id * * @return $this */ diff --git a/src/Model/NewAccountSummary.php b/src/Model/NewAccountSummary.php index 5ecf535f..8bcd3340 100644 --- a/src/Model/NewAccountSummary.php +++ b/src/Model/NewAccountSummary.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['account_id_guid'] = isset($data['account_id_guid']) ? $data['account_id_guid'] : null; diff --git a/src/Model/NewUser.php b/src/Model/NewUser.php index 488834bd..7fea030f 100644 --- a/src/Model/NewUser.php +++ b/src/Model/NewUser.php @@ -221,9 +221,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -238,7 +238,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_password'] = isset($data['api_password']) ? $data['api_password'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -340,7 +340,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -388,7 +388,7 @@ public function getLicenseStatus() /** * Sets license_status * - * @param ?string $license_status + * @param ?string $license_status * * @return $this */ @@ -412,7 +412,7 @@ public function getLicenseType() /** * Sets license_type * - * @param ?string $license_type + * @param ?string $license_type * * @return $this */ @@ -436,7 +436,7 @@ public function getMembershipId() /** * Sets membership_id * - * @param ?string $membership_id + * @param ?string $membership_id * * @return $this */ @@ -460,7 +460,7 @@ public function getPermissionProfileId() /** * Sets permission_profile_id * - * @param ?string $permission_profile_id + * @param ?string $permission_profile_id * * @return $this */ @@ -484,7 +484,7 @@ public function getPermissionProfileName() /** * Sets permission_profile_name * - * @param ?string $permission_profile_name + * @param ?string $permission_profile_name * * @return $this */ @@ -508,7 +508,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -556,7 +556,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ @@ -580,7 +580,7 @@ public function getUserStatus() /** * Sets user_status * - * @param ?string $user_status + * @param ?string $user_status * * @return $this */ diff --git a/src/Model/NewUsersDefinition.php b/src/Model/NewUsersDefinition.php index e95c46e7..b241a746 100644 --- a/src/Model/NewUsersDefinition.php +++ b/src/Model/NewUsersDefinition.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['new_users'] = isset($data['new_users']) ? $data['new_users'] : null; } @@ -219,7 +219,7 @@ public function getNewUsers() /** * Sets new_users * - * @param \DocuSign\eSign\Model\UserInformation[] $new_users + * @param \DocuSign\eSign\Model\UserInformation[] $new_users * * @return $this */ diff --git a/src/Model/NewUsersSummary.php b/src/Model/NewUsersSummary.php index ceacf97b..afbac56b 100644 --- a/src/Model/NewUsersSummary.php +++ b/src/Model/NewUsersSummary.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['new_users'] = isset($data['new_users']) ? $data['new_users'] : null; } @@ -220,7 +220,7 @@ public function getNewUsers() /** * Sets new_users * - * @param \DocuSign\eSign\Model\NewUser[] $new_users + * @param \DocuSign\eSign\Model\NewUser[] $new_users * * @return $this */ diff --git a/src/Model/Notarize.php b/src/Model/Notarize.php index 36fb84e0..4d6d2c8f 100644 --- a/src/Model/Notarize.php +++ b/src/Model/Notarize.php @@ -561,9 +561,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -578,7 +578,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -700,7 +700,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -724,7 +724,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -748,7 +748,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1036,7 +1036,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1228,7 +1228,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1252,7 +1252,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1372,7 +1372,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1516,7 +1516,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1540,7 +1540,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1588,7 +1588,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1636,7 +1636,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1804,7 +1804,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1900,7 +1900,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2044,7 +2044,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2116,7 +2116,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2140,7 +2140,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2236,7 +2236,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2284,7 +2284,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2428,7 +2428,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2476,7 +2476,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Notary.php b/src/Model/Notary.php index 49388b17..3cb7488e 100644 --- a/src/Model/Notary.php +++ b/src/Model/Notary.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created_date'] = isset($data['created_date']) ? $data['created_date'] : null; $this->container['enabled'] = isset($data['enabled']) ? $data['enabled'] : null; @@ -237,7 +237,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -261,7 +261,7 @@ public function getEnabled() /** * Sets enabled * - * @param ?string $enabled + * @param ?string $enabled * * @return $this */ @@ -285,7 +285,7 @@ public function getSearchable() /** * Sets searchable * - * @param ?string $searchable + * @param ?string $searchable * * @return $this */ diff --git a/src/Model/NotaryCertificate.php b/src/Model/NotaryCertificate.php index 51230cf2..1700d0d2 100644 --- a/src/Model/NotaryCertificate.php +++ b/src/Model/NotaryCertificate.php @@ -535,7 +535,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['anchor_allow_white_space_in_characters'] = isset($data['anchor_allow_white_space_in_characters']) ? $data['anchor_allow_white_space_in_characters'] : null; $this->container['anchor_allow_white_space_in_characters_metadata'] = isset($data['anchor_allow_white_space_in_characters_metadata']) ? $data['anchor_allow_white_space_in_characters_metadata'] : null; diff --git a/src/Model/NotaryContactDetails.php b/src/Model/NotaryContactDetails.php index 0a84a927..7dde0c10 100644 --- a/src/Model/NotaryContactDetails.php +++ b/src/Model/NotaryContactDetails.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['has_docusign_certificate'] = isset($data['has_docusign_certificate']) ? $data['has_docusign_certificate'] : null; $this->container['jurisdictions'] = isset($data['jurisdictions']) ? $data['jurisdictions'] : null; @@ -225,7 +225,7 @@ public function getHasDocusignCertificate() /** * Sets has_docusign_certificate * - * @param ?string $has_docusign_certificate + * @param ?string $has_docusign_certificate * * @return $this */ @@ -249,7 +249,7 @@ public function getJurisdictions() /** * Sets jurisdictions * - * @param \DocuSign\eSign\Model\JurisdictionSummary[] $jurisdictions + * @param \DocuSign\eSign\Model\JurisdictionSummary[] $jurisdictions * * @return $this */ diff --git a/src/Model/NotaryHost.php b/src/Model/NotaryHost.php index df0f4ecc..112304b2 100644 --- a/src/Model/NotaryHost.php +++ b/src/Model/NotaryHost.php @@ -496,9 +496,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -513,7 +513,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -694,7 +694,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -718,7 +718,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -742,7 +742,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -790,7 +790,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -958,7 +958,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -982,7 +982,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1006,7 +1006,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1030,7 +1030,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1054,7 +1054,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -1222,7 +1222,7 @@ public function getHostRecipientId() /** * Sets host_recipient_id * - * @param ?string $host_recipient_id + * @param ?string $host_recipient_id * * @return $this */ @@ -1366,7 +1366,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1390,7 +1390,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1414,7 +1414,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1534,7 +1534,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -1606,7 +1606,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -1654,7 +1654,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1678,7 +1678,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2062,7 +2062,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -2086,7 +2086,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -2182,7 +2182,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -2206,7 +2206,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2230,7 +2230,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/NotaryJournal.php b/src/Model/NotaryJournal.php index 53170bd7..c95bb8ba 100644 --- a/src/Model/NotaryJournal.php +++ b/src/Model/NotaryJournal.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created_date'] = isset($data['created_date']) ? $data['created_date'] : null; $this->container['document_name'] = isset($data['document_name']) ? $data['document_name'] : null; @@ -249,7 +249,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -273,7 +273,7 @@ public function getDocumentName() /** * Sets document_name * - * @param ?string $document_name + * @param ?string $document_name * * @return $this */ @@ -321,7 +321,7 @@ public function getNotaryJournalId() /** * Sets notary_journal_id * - * @param ?string $notary_journal_id + * @param ?string $notary_journal_id * * @return $this */ @@ -369,7 +369,7 @@ public function getSignerName() /** * Sets signer_name * - * @param ?string $signer_name + * @param ?string $signer_name * * @return $this */ diff --git a/src/Model/NotaryJournalCredibleWitness.php b/src/Model/NotaryJournalCredibleWitness.php index 4a251542..aaf812d8 100644 --- a/src/Model/NotaryJournalCredibleWitness.php +++ b/src/Model/NotaryJournalCredibleWitness.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address'] = isset($data['address']) ? $data['address'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -231,7 +231,7 @@ public function getAddress() /** * Sets address * - * @param ?string $address + * @param ?string $address * * @return $this */ @@ -255,7 +255,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -279,7 +279,7 @@ public function getSignatureImage() /** * Sets signature_image * - * @param ?string $signature_image + * @param ?string $signature_image * * @return $this */ diff --git a/src/Model/NotaryJournalList.php b/src/Model/NotaryJournalList.php index 35f332f1..55a53283 100644 --- a/src/Model/NotaryJournalList.php +++ b/src/Model/NotaryJournalList.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; diff --git a/src/Model/NotaryJournalMetaData.php b/src/Model/NotaryJournalMetaData.php index a0bb33bd..339c6c20 100644 --- a/src/Model/NotaryJournalMetaData.php +++ b/src/Model/NotaryJournalMetaData.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['comment'] = isset($data['comment']) ? $data['comment'] : null; $this->container['credible_witnesses'] = isset($data['credible_witnesses']) ? $data['credible_witnesses'] : null; @@ -237,7 +237,7 @@ public function getComment() /** * Sets comment * - * @param ?string $comment + * @param ?string $comment * * @return $this */ @@ -261,7 +261,7 @@ public function getCredibleWitnesses() /** * Sets credible_witnesses * - * @param \DocuSign\eSign\Model\NotaryJournalCredibleWitness[] $credible_witnesses + * @param \DocuSign\eSign\Model\NotaryJournalCredibleWitness[] $credible_witnesses * * @return $this */ @@ -285,7 +285,7 @@ public function getSignatureImage() /** * Sets signature_image * - * @param ?string $signature_image + * @param ?string $signature_image * * @return $this */ @@ -309,7 +309,7 @@ public function getSignerIdType() /** * Sets signer_id_type * - * @param ?string $signer_id_type + * @param ?string $signer_id_type * * @return $this */ diff --git a/src/Model/NotaryJurisdiction.php b/src/Model/NotaryJurisdiction.php index 0dd7fc75..06b7b695 100644 --- a/src/Model/NotaryJurisdiction.php +++ b/src/Model/NotaryJurisdiction.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['commission_expiration'] = isset($data['commission_expiration']) ? $data['commission_expiration'] : null; $this->container['commission_id'] = isset($data['commission_id']) ? $data['commission_id'] : null; @@ -256,7 +256,7 @@ public function getCommissionExpiration() /** * Sets commission_expiration * - * @param ?string $commission_expiration + * @param ?string $commission_expiration * * @return $this */ @@ -280,7 +280,7 @@ public function getCommissionId() /** * Sets commission_id * - * @param ?string $commission_id + * @param ?string $commission_id * * @return $this */ @@ -304,7 +304,7 @@ public function getCounty() /** * Sets county * - * @param ?string $county + * @param ?string $county * * @return $this */ @@ -376,7 +376,7 @@ public function getRegisteredName() /** * Sets registered_name * - * @param ?string $registered_name + * @param ?string $registered_name * * @return $this */ @@ -400,7 +400,7 @@ public function getSealType() /** * Sets seal_type * - * @param ?string $seal_type + * @param ?string $seal_type * * @return $this */ diff --git a/src/Model/NotaryJurisdictionList.php b/src/Model/NotaryJurisdictionList.php index b57238ec..b70e90bc 100644 --- a/src/Model/NotaryJurisdictionList.php +++ b/src/Model/NotaryJurisdictionList.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -304,7 +304,7 @@ public function getNotaryJurisdictions() /** * Sets notary_jurisdictions * - * @param \DocuSign\eSign\Model\NotaryJurisdiction[] $notary_jurisdictions + * @param \DocuSign\eSign\Model\NotaryJurisdiction[] $notary_jurisdictions * * @return $this */ diff --git a/src/Model/NotaryRecipient.php b/src/Model/NotaryRecipient.php index 7af3a4c0..2f6d33a3 100644 --- a/src/Model/NotaryRecipient.php +++ b/src/Model/NotaryRecipient.php @@ -685,9 +685,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -702,7 +702,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -921,7 +921,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -945,7 +945,7 @@ public function getAgentCanEditEmail() /** * Sets agent_can_edit_email * - * @param ?string $agent_can_edit_email + * @param ?string $agent_can_edit_email * * @return $this */ @@ -969,7 +969,7 @@ public function getAgentCanEditName() /** * Sets agent_can_edit_name * - * @param ?string $agent_can_edit_name + * @param ?string $agent_can_edit_name * * @return $this */ @@ -993,7 +993,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -1017,7 +1017,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -1041,7 +1041,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -1089,7 +1089,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -1113,7 +1113,7 @@ public function getCanNotaryCorrectEnvelope() /** * Sets can_notary_correct_envelope * - * @param ?string $can_notary_correct_envelope + * @param ?string $can_notary_correct_envelope * * @return $this */ @@ -1185,7 +1185,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -1209,7 +1209,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1233,7 +1233,7 @@ public function getCreationReason() /** * Sets creation_reason * - * @param ?string $creation_reason + * @param ?string $creation_reason * * @return $this */ @@ -1329,7 +1329,7 @@ public function getDefaultRecipient() /** * Sets default_recipient * - * @param ?string $default_recipient + * @param ?string $default_recipient * * @return $this */ @@ -1353,7 +1353,7 @@ public function getDelegatedBy() /** * Sets delegated_by * - * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by + * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by * * @return $this */ @@ -1377,7 +1377,7 @@ public function getDelegatedTo() /** * Sets delegated_to * - * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to + * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to * * @return $this */ @@ -1473,7 +1473,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1497,7 +1497,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1521,7 +1521,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1545,7 +1545,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1569,7 +1569,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -1641,7 +1641,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1833,7 +1833,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -2001,7 +2001,7 @@ public function getIsBulkRecipient() /** * Sets is_bulk_recipient * - * @param ?string $is_bulk_recipient + * @param ?string $is_bulk_recipient * * @return $this */ @@ -2049,7 +2049,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -2097,7 +2097,7 @@ public function getLiveOakStartUrl() /** * Sets live_oak_start_url * - * @param ?string $live_oak_start_url + * @param ?string $live_oak_start_url * * @return $this */ @@ -2121,7 +2121,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -2145,7 +2145,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -2169,7 +2169,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2217,7 +2217,7 @@ public function getNotaryId() /** * Sets notary_id * - * @param ?string $notary_id + * @param ?string $notary_id * * @return $this */ @@ -2241,7 +2241,7 @@ public function getNotarySignerEmailSent() /** * Sets notary_signer_email_sent * - * @param ?string $notary_signer_email_sent + * @param ?string $notary_signer_email_sent * * @return $this */ @@ -2265,7 +2265,7 @@ public function getNotarySigners() /** * Sets notary_signers * - * @param ?string[] $notary_signers + * @param ?string[] $notary_signers * * @return $this */ @@ -2289,7 +2289,7 @@ public function getNotarySourceType() /** * Sets notary_source_type * - * @param ?string $notary_source_type + * @param ?string $notary_source_type * * @return $this */ @@ -2313,7 +2313,7 @@ public function getNotaryThirdPartyPartner() /** * Sets notary_third_party_partner * - * @param ?string $notary_third_party_partner + * @param ?string $notary_third_party_partner * * @return $this */ @@ -2337,7 +2337,7 @@ public function getNotaryType() /** * Sets notary_type * - * @param ?string $notary_type + * @param ?string $notary_type * * @return $this */ @@ -2481,7 +2481,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -2553,7 +2553,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2601,7 +2601,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2625,7 +2625,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -2649,7 +2649,7 @@ public function getRecipientSuppliesTabs() /** * Sets recipient_supplies_tabs * - * @param ?string $recipient_supplies_tabs + * @param ?string $recipient_supplies_tabs * * @return $this */ @@ -2673,7 +2673,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2769,7 +2769,7 @@ public function getRequireSignerCertificate() /** * Sets require_signer_certificate * - * @param ?string $require_signer_certificate + * @param ?string $require_signer_certificate * * @return $this */ @@ -2793,7 +2793,7 @@ public function getRequireSignOnPaper() /** * Sets require_sign_on_paper * - * @param ?string $require_sign_on_paper + * @param ?string $require_sign_on_paper * * @return $this */ @@ -2817,7 +2817,7 @@ public function getRequireUploadSignature() /** * Sets require_upload_signature * - * @param ?string $require_upload_signature + * @param ?string $require_upload_signature * * @return $this */ @@ -3201,7 +3201,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -3225,7 +3225,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -3321,7 +3321,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -3345,7 +3345,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -3369,7 +3369,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/NotaryResult.php b/src/Model/NotaryResult.php index e923a023..c4d33867 100644 --- a/src/Model/NotaryResult.php +++ b/src/Model/NotaryResult.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['jurisdictions'] = isset($data['jurisdictions']) ? $data['jurisdictions'] : null; $this->container['notary'] = isset($data['notary']) ? $data['notary'] : null; @@ -226,7 +226,7 @@ public function getJurisdictions() /** * Sets jurisdictions * - * @param \DocuSign\eSign\Model\Jurisdiction[] $jurisdictions + * @param \DocuSign\eSign\Model\Jurisdiction[] $jurisdictions * * @return $this */ @@ -250,7 +250,7 @@ public function getNotary() /** * Sets notary * - * @param \DocuSign\eSign\Model\Notary $notary + * @param \DocuSign\eSign\Model\Notary $notary * * @return $this */ diff --git a/src/Model/NotarySeal.php b/src/Model/NotarySeal.php index b9d88a27..5bc81f23 100644 --- a/src/Model/NotarySeal.php +++ b/src/Model/NotarySeal.php @@ -571,9 +571,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -588,7 +588,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -712,7 +712,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -736,7 +736,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -760,7 +760,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1048,7 +1048,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1240,7 +1240,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1264,7 +1264,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1384,7 +1384,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1528,7 +1528,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1552,7 +1552,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1600,7 +1600,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1648,7 +1648,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1768,7 +1768,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1792,7 +1792,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1912,7 +1912,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1984,7 +1984,7 @@ public function getScaleValue() /** * Sets scale_value * - * @param ?string $scale_value + * @param ?string $scale_value * * @return $this */ @@ -2056,7 +2056,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2128,7 +2128,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2152,7 +2152,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2296,7 +2296,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2344,7 +2344,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2488,7 +2488,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2536,7 +2536,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Note.php b/src/Model/Note.php index 06cef0db..ea884299 100644 --- a/src/Model/Note.php +++ b/src/Model/Note.php @@ -646,9 +646,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -663,7 +663,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -802,7 +802,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -826,7 +826,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -850,7 +850,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1138,7 +1138,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1378,7 +1378,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1402,7 +1402,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1522,7 +1522,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1666,7 +1666,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1834,7 +1834,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1882,7 +1882,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1930,7 +1930,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2122,7 +2122,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2266,7 +2266,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2410,7 +2410,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2482,7 +2482,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2506,7 +2506,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2650,7 +2650,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2698,7 +2698,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2842,7 +2842,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2986,7 +2986,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Notification.php b/src/Model/Notification.php index 5b257a40..924f6213 100644 --- a/src/Model/Notification.php +++ b/src/Model/Notification.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expirations'] = isset($data['expirations']) ? $data['expirations'] : null; $this->container['reminders'] = isset($data['reminders']) ? $data['reminders'] : null; diff --git a/src/Model/NotificationDefaultSettings.php b/src/Model/NotificationDefaultSettings.php index c51f5cc9..ccd8acb2 100644 --- a/src/Model/NotificationDefaultSettings.php +++ b/src/Model/NotificationDefaultSettings.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sender_email_notifications'] = isset($data['sender_email_notifications']) ? $data['sender_email_notifications'] : null; $this->container['signer_email_notifications'] = isset($data['signer_email_notifications']) ? $data['signer_email_notifications'] : null; diff --git a/src/Model/NotificationDefaults.php b/src/Model/NotificationDefaults.php index d2ed05e4..256787ea 100644 --- a/src/Model/NotificationDefaults.php +++ b/src/Model/NotificationDefaults.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_email_notifications'] = isset($data['api_email_notifications']) ? $data['api_email_notifications'] : null; $this->container['email_notifications'] = isset($data['email_notifications']) ? $data['email_notifications'] : null; diff --git a/src/Model/Number.php b/src/Model/Number.php index bd8d1c96..6540f738 100644 --- a/src/Model/Number.php +++ b/src/Model/Number.php @@ -803,7 +803,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/Numerical.php b/src/Model/Numerical.php index 646b65f6..b18415ad 100644 --- a/src/Model/Numerical.php +++ b/src/Model/Numerical.php @@ -770,9 +770,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -787,7 +787,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -951,7 +951,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -975,7 +975,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -999,7 +999,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1023,7 +1023,7 @@ public function getAnchorAllowWhiteSpaceInCharactersMetadata() /** * Sets anchor_allow_white_space_in_characters_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_allow_white_space_in_characters_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_allow_white_space_in_characters_metadata * * @return $this */ @@ -1071,7 +1071,7 @@ public function getAnchorCaseSensitiveMetadata() /** * Sets anchor_case_sensitive_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_case_sensitive_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_case_sensitive_metadata * * @return $this */ @@ -1119,7 +1119,7 @@ public function getAnchorHorizontalAlignmentMetadata() /** * Sets anchor_horizontal_alignment_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_horizontal_alignment_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_horizontal_alignment_metadata * * @return $this */ @@ -1167,7 +1167,7 @@ public function getAnchorIgnoreIfNotPresentMetadata() /** * Sets anchor_ignore_if_not_present_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_ignore_if_not_present_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_ignore_if_not_present_metadata * * @return $this */ @@ -1215,7 +1215,7 @@ public function getAnchorMatchWholeWordMetadata() /** * Sets anchor_match_whole_word_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_match_whole_word_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_match_whole_word_metadata * * @return $this */ @@ -1263,7 +1263,7 @@ public function getAnchorStringMetadata() /** * Sets anchor_string_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_string_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_string_metadata * * @return $this */ @@ -1287,7 +1287,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1311,7 +1311,7 @@ public function getAnchorTabProcessorVersionMetadata() /** * Sets anchor_tab_processor_version_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_tab_processor_version_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_tab_processor_version_metadata * * @return $this */ @@ -1359,7 +1359,7 @@ public function getAnchorUnitsMetadata() /** * Sets anchor_units_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_units_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_units_metadata * * @return $this */ @@ -1407,7 +1407,7 @@ public function getAnchorXOffsetMetadata() /** * Sets anchor_x_offset_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_x_offset_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_x_offset_metadata * * @return $this */ @@ -1455,7 +1455,7 @@ public function getAnchorYOffsetMetadata() /** * Sets anchor_y_offset_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_y_offset_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $anchor_y_offset_metadata * * @return $this */ @@ -1503,7 +1503,7 @@ public function getBoldMetadata() /** * Sets bold_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $bold_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $bold_metadata * * @return $this */ @@ -1527,7 +1527,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1551,7 +1551,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1599,7 +1599,7 @@ public function getConcealValueOnDocumentMetadata() /** * Sets conceal_value_on_document_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $conceal_value_on_document_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $conceal_value_on_document_metadata * * @return $this */ @@ -1647,7 +1647,7 @@ public function getConditionalParentLabelMetadata() /** * Sets conditional_parent_label_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $conditional_parent_label_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $conditional_parent_label_metadata * * @return $this */ @@ -1695,7 +1695,7 @@ public function getConditionalParentValueMetadata() /** * Sets conditional_parent_value_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $conditional_parent_value_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $conditional_parent_value_metadata * * @return $this */ @@ -1719,7 +1719,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1767,7 +1767,7 @@ public function getCustomTabIdMetadata() /** * Sets custom_tab_id_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $custom_tab_id_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $custom_tab_id_metadata * * @return $this */ @@ -1815,7 +1815,7 @@ public function getDisableAutoSizeMetadata() /** * Sets disable_auto_size_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $disable_auto_size_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $disable_auto_size_metadata * * @return $this */ @@ -1863,7 +1863,7 @@ public function getDocumentIdMetadata() /** * Sets document_id_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $document_id_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $document_id_metadata * * @return $this */ @@ -1911,7 +1911,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1983,7 +1983,7 @@ public function getFontColorMetadata() /** * Sets font_color_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $font_color_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $font_color_metadata * * @return $this */ @@ -2007,7 +2007,7 @@ public function getFontMetadata() /** * Sets font_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $font_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $font_metadata * * @return $this */ @@ -2055,7 +2055,7 @@ public function getFontSizeMetadata() /** * Sets font_size_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $font_size_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $font_size_metadata * * @return $this */ @@ -2079,7 +2079,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2103,7 +2103,7 @@ public function getFormOrderMetadata() /** * Sets form_order_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $form_order_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $form_order_metadata * * @return $this */ @@ -2127,7 +2127,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2151,7 +2151,7 @@ public function getFormPageLabelMetadata() /** * Sets form_page_label_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $form_page_label_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $form_page_label_metadata * * @return $this */ @@ -2175,7 +2175,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2199,7 +2199,7 @@ public function getFormPageNumberMetadata() /** * Sets form_page_number_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $form_page_number_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $form_page_number_metadata * * @return $this */ @@ -2247,7 +2247,7 @@ public function getHeightMetadata() /** * Sets height_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $height_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $height_metadata * * @return $this */ @@ -2295,7 +2295,7 @@ public function getItalicMetadata() /** * Sets italic_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $italic_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $italic_metadata * * @return $this */ @@ -2319,7 +2319,7 @@ public function getLocalePolicy() /** * Sets locale_policy * - * @param \DocuSign\eSign\Model\LocalePolicyTab $locale_policy + * @param \DocuSign\eSign\Model\LocalePolicyTab $locale_policy * * @return $this */ @@ -2367,7 +2367,7 @@ public function getLockedMetadata() /** * Sets locked_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $locked_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $locked_metadata * * @return $this */ @@ -2415,7 +2415,7 @@ public function getMaxLengthMetadata() /** * Sets max_length_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $max_length_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $max_length_metadata * * @return $this */ @@ -2439,7 +2439,7 @@ public function getMaxNumericalValue() /** * Sets max_numerical_value * - * @param ?string $max_numerical_value + * @param ?string $max_numerical_value * * @return $this */ @@ -2463,7 +2463,7 @@ public function getMergeField() /** * Sets merge_field * - * @param \DocuSign\eSign\Model\MergeField $merge_field + * @param \DocuSign\eSign\Model\MergeField $merge_field * * @return $this */ @@ -2487,7 +2487,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2511,7 +2511,7 @@ public function getMinNumericalValue() /** * Sets min_numerical_value * - * @param ?string $min_numerical_value + * @param ?string $min_numerical_value * * @return $this */ @@ -2535,7 +2535,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2559,7 +2559,7 @@ public function getNameMetadata() /** * Sets name_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $name_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $name_metadata * * @return $this */ @@ -2583,7 +2583,7 @@ public function getNumericalValue() /** * Sets numerical_value * - * @param ?string $numerical_value + * @param ?string $numerical_value * * @return $this */ @@ -2607,7 +2607,7 @@ public function getOriginalNumericalValue() /** * Sets original_numerical_value * - * @param ?string $original_numerical_value + * @param ?string $original_numerical_value * * @return $this */ @@ -2655,7 +2655,7 @@ public function getOriginalValueMetadata() /** * Sets original_value_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $original_value_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $original_value_metadata * * @return $this */ @@ -2703,7 +2703,7 @@ public function getPageNumberMetadata() /** * Sets page_number_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $page_number_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $page_number_metadata * * @return $this */ @@ -2751,7 +2751,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2775,7 +2775,7 @@ public function getRecipientIdGuidMetadata() /** * Sets recipient_id_guid_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $recipient_id_guid_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $recipient_id_guid_metadata * * @return $this */ @@ -2799,7 +2799,7 @@ public function getRecipientIdMetadata() /** * Sets recipient_id_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $recipient_id_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $recipient_id_metadata * * @return $this */ @@ -2847,7 +2847,7 @@ public function getRequireAllMetadata() /** * Sets require_all_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $require_all_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $require_all_metadata * * @return $this */ @@ -2895,7 +2895,7 @@ public function getRequiredMetadata() /** * Sets required_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $required_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $required_metadata * * @return $this */ @@ -2943,7 +2943,7 @@ public function getRequireInitialOnSharedChangeMetadata() /** * Sets require_initial_on_shared_change_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $require_initial_on_shared_change_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $require_initial_on_shared_change_metadata * * @return $this */ @@ -2991,7 +2991,7 @@ public function getSenderRequiredMetadata() /** * Sets sender_required_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $sender_required_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $sender_required_metadata * * @return $this */ @@ -3039,7 +3039,7 @@ public function getSharedMetadata() /** * Sets shared_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $shared_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $shared_metadata * * @return $this */ @@ -3063,7 +3063,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -3087,7 +3087,7 @@ public function getShareToRecipientsMetadata() /** * Sets share_to_recipients_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $share_to_recipients_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $share_to_recipients_metadata * * @return $this */ @@ -3111,7 +3111,7 @@ public function getSmartContractInformation() /** * Sets smart_contract_information * - * @param \DocuSign\eSign\Model\SmartContractInformation $smart_contract_information + * @param \DocuSign\eSign\Model\SmartContractInformation $smart_contract_information * * @return $this */ @@ -3135,7 +3135,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -3183,7 +3183,7 @@ public function getStatusMetadata() /** * Sets status_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $status_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $status_metadata * * @return $this */ @@ -3207,7 +3207,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -3231,7 +3231,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3255,7 +3255,7 @@ public function getTabGroupLabelsMetadata() /** * Sets tab_group_labels_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tab_group_labels_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tab_group_labels_metadata * * @return $this */ @@ -3303,7 +3303,7 @@ public function getTabIdMetadata() /** * Sets tab_id_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tab_id_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tab_id_metadata * * @return $this */ @@ -3351,7 +3351,7 @@ public function getTabLabelMetadata() /** * Sets tab_label_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tab_label_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tab_label_metadata * * @return $this */ @@ -3375,7 +3375,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3399,7 +3399,7 @@ public function getTabOrderMetadata() /** * Sets tab_order_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tab_order_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tab_order_metadata * * @return $this */ @@ -3423,7 +3423,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3447,7 +3447,7 @@ public function getTabTypeMetadata() /** * Sets tab_type_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tab_type_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tab_type_metadata * * @return $this */ @@ -3495,7 +3495,7 @@ public function getTemplateLockedMetadata() /** * Sets template_locked_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $template_locked_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $template_locked_metadata * * @return $this */ @@ -3543,7 +3543,7 @@ public function getTemplateRequiredMetadata() /** * Sets template_required_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $template_required_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $template_required_metadata * * @return $this */ @@ -3567,7 +3567,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3591,7 +3591,7 @@ public function getToolTipMetadata() /** * Sets tool_tip_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $tool_tip_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $tool_tip_metadata * * @return $this */ @@ -3639,7 +3639,7 @@ public function getUnderlineMetadata() /** * Sets underline_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $underline_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $underline_metadata * * @return $this */ @@ -3663,7 +3663,7 @@ public function getValidationType() /** * Sets validation_type * - * @param ?string $validation_type + * @param ?string $validation_type * * @return $this */ @@ -3711,7 +3711,7 @@ public function getValueMetadata() /** * Sets value_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $value_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $value_metadata * * @return $this */ @@ -3735,7 +3735,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ @@ -3783,7 +3783,7 @@ public function getWidthMetadata() /** * Sets width_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $width_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $width_metadata * * @return $this */ @@ -3831,7 +3831,7 @@ public function getXPositionMetadata() /** * Sets x_position_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $x_position_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $x_position_metadata * * @return $this */ @@ -3879,7 +3879,7 @@ public function getYPositionMetadata() /** * Sets y_position_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $y_position_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $y_position_metadata * * @return $this */ diff --git a/src/Model/OauthAccess.php b/src/Model/OauthAccess.php index 2673fe61..4c5c120e 100644 --- a/src/Model/OauthAccess.php +++ b/src/Model/OauthAccess.php @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_token'] = isset($data['access_token']) ? $data['access_token'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Model/OcrRequest.php b/src/Model/OcrRequest.php index 25027414..8b041152 100644 --- a/src/Model/OcrRequest.php +++ b/src/Model/OcrRequest.php @@ -123,9 +123,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -137,7 +137,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ocr_language'] = isset($data['ocr_language']) ? $data['ocr_language'] : null; $this->container['page_selection'] = isset($data['page_selection']) ? $data['page_selection'] : null; @@ -181,7 +181,7 @@ public function getOcrLanguage() /** * Sets ocr_language - * @param string $ocr_language + * @param string $ocr_language * @return $this */ public function setOcrLanguage($ocr_language) @@ -202,7 +202,7 @@ public function getPageSelection() /** * Sets page_selection - * @param string $page_selection + * @param string $page_selection * @return $this */ public function setPageSelection($page_selection) @@ -223,7 +223,7 @@ public function getSetPageOrientation() /** * Sets set_page_orientation - * @param string $set_page_orientation + * @param string $set_page_orientation * @return $this */ public function setSetPageOrientation($set_page_orientation) @@ -244,7 +244,7 @@ public function getShowFrames() /** * Sets show_frames - * @param string $show_frames + * @param string $show_frames * @return $this */ public function setShowFrames($show_frames) @@ -265,7 +265,7 @@ public function getShowText() /** * Sets show_text - * @param string $show_text + * @param string $show_text * @return $this */ public function setShowText($show_text) @@ -286,7 +286,7 @@ public function getSkipPagesHavingExistingExtractableText() /** * Sets skip_pages_having_existing_extractable_text - * @param string $skip_pages_having_existing_extractable_text + * @param string $skip_pages_having_existing_extractable_text * @return $this */ public function setSkipPagesHavingExistingExtractableText($skip_pages_having_existing_extractable_text) diff --git a/src/Model/OfflineAttributes.php b/src/Model/OfflineAttributes.php index 14ffa936..c9c29bd3 100644 --- a/src/Model/OfflineAttributes.php +++ b/src/Model/OfflineAttributes.php @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_esign_id'] = isset($data['account_esign_id']) ? $data['account_esign_id'] : null; $this->container['device_model'] = isset($data['device_model']) ? $data['device_model'] : null; diff --git a/src/Model/Page.php b/src/Model/Page.php index e9bcfe24..ced686ad 100644 --- a/src/Model/Page.php +++ b/src/Model/Page.php @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['dpi'] = isset($data['dpi']) ? $data['dpi'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/PageImages.php b/src/Model/PageImages.php index d7089f62..94672a23 100644 --- a/src/Model/PageImages.php +++ b/src/Model/PageImages.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -303,7 +303,7 @@ public function getPages() /** * Sets pages * - * @param \DocuSign\eSign\Model\Page[] $pages + * @param \DocuSign\eSign\Model\Page[] $pages * * @return $this */ diff --git a/src/Model/PageRequest.php b/src/Model/PageRequest.php index d32e3d64..8f7d945f 100644 --- a/src/Model/PageRequest.php +++ b/src/Model/PageRequest.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['password'] = isset($data['password']) ? $data['password'] : null; $this->container['rotate'] = isset($data['rotate']) ? $data['rotate'] : null; @@ -225,7 +225,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ diff --git a/src/Model/PageSize.php b/src/Model/PageSize.php index 1e20ad87..bb713dbc 100644 --- a/src/Model/PageSize.php +++ b/src/Model/PageSize.php @@ -121,7 +121,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['page_height'] = isset($data['page_height']) ? $data['page_height'] : null; $this->container['page_width'] = isset($data['page_width']) ? $data['page_width'] : null; diff --git a/src/Model/PaletteItemSettings.php b/src/Model/PaletteItemSettings.php index 054e242f..102b0006 100644 --- a/src/Model/PaletteItemSettings.php +++ b/src/Model/PaletteItemSettings.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show'] = isset($data['show']) ? $data['show'] : null; } @@ -219,7 +219,7 @@ public function getShow() /** * Sets show * - * @param ?string $show + * @param ?string $show * * @return $this */ diff --git a/src/Model/PaletteSettings.php b/src/Model/PaletteSettings.php index c89bc3bd..17d5d7ff 100644 --- a/src/Model/PaletteSettings.php +++ b/src/Model/PaletteSettings.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['annotations'] = isset($data['annotations']) ? $data['annotations'] : null; $this->container['custom'] = isset($data['custom']) ? $data['custom'] : null; diff --git a/src/Model/Participant.php b/src/Model/Participant.php index 31a619ac..72c65685 100644 --- a/src/Model/Participant.php +++ b/src/Model/Participant.php @@ -562,7 +562,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; diff --git a/src/Model/PathExtendedElement.php b/src/Model/PathExtendedElement.php index 04e430ff..501cfb58 100644 --- a/src/Model/PathExtendedElement.php +++ b/src/Model/PathExtendedElement.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; @@ -231,7 +231,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -255,7 +255,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ @@ -279,7 +279,7 @@ public function getTypeName() /** * Sets type_name * - * @param ?string $type_name + * @param ?string $type_name * * @return $this */ diff --git a/src/Model/PayPalLegacySettings.php b/src/Model/PayPalLegacySettings.php index 5b694bdc..70a70a16 100644 --- a/src/Model/PayPalLegacySettings.php +++ b/src/Model/PayPalLegacySettings.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['partner'] = isset($data['partner']) ? $data['partner'] : null; @@ -243,7 +243,7 @@ public function getCurrency() /** * Sets currency * - * @param ?string $currency + * @param ?string $currency * * @return $this */ @@ -267,7 +267,7 @@ public function getPartner() /** * Sets partner * - * @param ?string $partner + * @param ?string $partner * * @return $this */ @@ -291,7 +291,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -315,7 +315,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ @@ -339,7 +339,7 @@ public function getVendor() /** * Sets vendor * - * @param ?string $vendor + * @param ?string $vendor * * @return $this */ diff --git a/src/Model/PaymentDetails.php b/src/Model/PaymentDetails.php index 5298d464..35e107f9 100644 --- a/src/Model/PaymentDetails.php +++ b/src/Model/PaymentDetails.php @@ -246,9 +246,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -263,7 +263,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allowed_payment_methods'] = isset($data['allowed_payment_methods']) ? $data['allowed_payment_methods'] : null; $this->container['charge_id'] = isset($data['charge_id']) ? $data['charge_id'] : null; @@ -322,7 +322,7 @@ public function getAllowedPaymentMethods() /** * Sets allowed_payment_methods * - * @param ?string[] $allowed_payment_methods + * @param ?string[] $allowed_payment_methods * * @return $this */ @@ -346,7 +346,7 @@ public function getChargeId() /** * Sets charge_id * - * @param ?string $charge_id + * @param ?string $charge_id * * @return $this */ @@ -370,7 +370,7 @@ public function getCurrencyCode() /** * Sets currency_code * - * @param ?string $currency_code + * @param ?string $currency_code * * @return $this */ @@ -418,7 +418,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param ?string $customer_id + * @param ?string $customer_id * * @return $this */ @@ -442,7 +442,7 @@ public function getCustomMetadata() /** * Sets custom_metadata * - * @param ?string $custom_metadata + * @param ?string $custom_metadata * * @return $this */ @@ -466,7 +466,7 @@ public function getCustomMetadataRequired() /** * Sets custom_metadata_required * - * @param ?bool $custom_metadata_required + * @param ?bool $custom_metadata_required * * @return $this */ @@ -490,7 +490,7 @@ public function getGatewayAccountId() /** * Sets gateway_account_id * - * @param ?string $gateway_account_id + * @param ?string $gateway_account_id * * @return $this */ @@ -538,7 +538,7 @@ public function getGatewayDisplayName() /** * Sets gateway_display_name * - * @param ?string $gateway_display_name + * @param ?string $gateway_display_name * * @return $this */ @@ -562,7 +562,7 @@ public function getGatewayName() /** * Sets gateway_name * - * @param ?string $gateway_name + * @param ?string $gateway_name * * @return $this */ @@ -586,7 +586,7 @@ public function getLineItems() /** * Sets line_items * - * @param \DocuSign\eSign\Model\PaymentLineItem[] $line_items + * @param \DocuSign\eSign\Model\PaymentLineItem[] $line_items * * @return $this */ @@ -610,7 +610,7 @@ public function getPaymentOption() /** * Sets payment_option * - * @param ?string $payment_option + * @param ?string $payment_option * * @return $this */ @@ -634,7 +634,7 @@ public function getPaymentSourceId() /** * Sets payment_source_id * - * @param ?string $payment_source_id + * @param ?string $payment_source_id * * @return $this */ @@ -658,7 +658,7 @@ public function getSignerValues() /** * Sets signer_values * - * @param \DocuSign\eSign\Model\PaymentSignerValues $signer_values + * @param \DocuSign\eSign\Model\PaymentSignerValues $signer_values * * @return $this */ @@ -706,7 +706,7 @@ public function getSubGatewayName() /** * Sets sub_gateway_name * - * @param ?string $sub_gateway_name + * @param ?string $sub_gateway_name * * @return $this */ diff --git a/src/Model/PaymentGatewayAccount.php b/src/Model/PaymentGatewayAccount.php index cfca3544..4d6fc5b3 100644 --- a/src/Model/PaymentGatewayAccount.php +++ b/src/Model/PaymentGatewayAccount.php @@ -226,9 +226,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -243,7 +243,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_custom_metadata'] = isset($data['allow_custom_metadata']) ? $data['allow_custom_metadata'] : null; $this->container['config'] = isset($data['config']) ? $data['config'] : null; @@ -298,7 +298,7 @@ public function getAllowCustomMetadata() /** * Sets allow_custom_metadata * - * @param ?bool $allow_custom_metadata + * @param ?bool $allow_custom_metadata * * @return $this */ @@ -346,7 +346,7 @@ public function getDisplayName() /** * Sets display_name * - * @param ?string $display_name + * @param ?string $display_name * * @return $this */ @@ -370,7 +370,7 @@ public function getIsEnabled() /** * Sets is_enabled * - * @param ?string $is_enabled + * @param ?string $is_enabled * * @return $this */ @@ -394,7 +394,7 @@ public function getIsLegacy() /** * Sets is_legacy * - * @param ?string $is_legacy + * @param ?string $is_legacy * * @return $this */ @@ -418,7 +418,7 @@ public function getLastModified() /** * Sets last_modified * - * @param ?string $last_modified + * @param ?string $last_modified * * @return $this */ @@ -442,7 +442,7 @@ public function getPaymentGateway() /** * Sets payment_gateway * - * @param ?string $payment_gateway + * @param ?string $payment_gateway * * @return $this */ @@ -466,7 +466,7 @@ public function getPaymentGatewayAccountId() /** * Sets payment_gateway_account_id * - * @param ?string $payment_gateway_account_id + * @param ?string $payment_gateway_account_id * * @return $this */ @@ -490,7 +490,7 @@ public function getPaymentGatewayDisplayName() /** * Sets payment_gateway_display_name * - * @param ?string $payment_gateway_display_name + * @param ?string $payment_gateway_display_name * * @return $this */ @@ -538,7 +538,7 @@ public function getSupportedCurrencies() /** * Sets supported_currencies * - * @param ?string[] $supported_currencies + * @param ?string[] $supported_currencies * * @return $this */ @@ -562,7 +562,7 @@ public function getSupportedPaymentMethods() /** * Sets supported_payment_methods * - * @param ?string[] $supported_payment_methods + * @param ?string[] $supported_payment_methods * * @return $this */ @@ -586,7 +586,7 @@ public function getSupportedPaymentMethodsWithOptions() /** * Sets supported_payment_methods_with_options * - * @param \DocuSign\eSign\Model\PaymentMethodWithOptions[] $supported_payment_methods_with_options + * @param \DocuSign\eSign\Model\PaymentMethodWithOptions[] $supported_payment_methods_with_options * * @return $this */ @@ -610,7 +610,7 @@ public function getZeroDecimalCurrencies() /** * Sets zero_decimal_currencies * - * @param ?string[] $zero_decimal_currencies + * @param ?string[] $zero_decimal_currencies * * @return $this */ diff --git a/src/Model/PaymentGatewayAccountSetting.php b/src/Model/PaymentGatewayAccountSetting.php index c0a86dad..6933e664 100644 --- a/src/Model/PaymentGatewayAccountSetting.php +++ b/src/Model/PaymentGatewayAccountSetting.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['api_fields'] = isset($data['api_fields']) ? $data['api_fields'] : null; $this->container['authorization_code'] = isset($data['authorization_code']) ? $data['authorization_code'] : null; @@ -237,7 +237,7 @@ public function getApiFields() /** * Sets api_fields * - * @param ?string $api_fields + * @param ?string $api_fields * * @return $this */ @@ -261,7 +261,7 @@ public function getAuthorizationCode() /** * Sets authorization_code * - * @param ?string $authorization_code + * @param ?string $authorization_code * * @return $this */ @@ -285,7 +285,7 @@ public function getCredentialStatus() /** * Sets credential_status * - * @param ?string $credential_status + * @param ?string $credential_status * * @return $this */ @@ -309,7 +309,7 @@ public function getMerchantId() /** * Sets merchant_id * - * @param ?string $merchant_id + * @param ?string $merchant_id * * @return $this */ diff --git a/src/Model/PaymentGatewayAccountsInfo.php b/src/Model/PaymentGatewayAccountsInfo.php index 9754fceb..59894e69 100644 --- a/src/Model/PaymentGatewayAccountsInfo.php +++ b/src/Model/PaymentGatewayAccountsInfo.php @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['payment_gateway_accounts'] = isset($data['payment_gateway_accounts']) ? $data['payment_gateway_accounts'] : null; } diff --git a/src/Model/PaymentLineItem.php b/src/Model/PaymentLineItem.php index dc23c906..b110fa08 100644 --- a/src/Model/PaymentLineItem.php +++ b/src/Model/PaymentLineItem.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount_reference'] = isset($data['amount_reference']) ? $data['amount_reference'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -238,7 +238,7 @@ public function getAmountReference() /** * Sets amount_reference * - * @param ?string $amount_reference + * @param ?string $amount_reference * * @return $this */ @@ -262,7 +262,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -286,7 +286,7 @@ public function getItemCode() /** * Sets item_code * - * @param ?string $item_code + * @param ?string $item_code * * @return $this */ @@ -310,7 +310,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/PaymentMethodWithOptions.php b/src/Model/PaymentMethodWithOptions.php index 2a716ab6..41d3d3aa 100644 --- a/src/Model/PaymentMethodWithOptions.php +++ b/src/Model/PaymentMethodWithOptions.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['supported_currencies'] = isset($data['supported_currencies']) ? $data['supported_currencies'] : null; $this->container['supported_options'] = isset($data['supported_options']) ? $data['supported_options'] : null; @@ -232,7 +232,7 @@ public function getSupportedCurrencies() /** * Sets supported_currencies * - * @param ?string[] $supported_currencies + * @param ?string[] $supported_currencies * * @return $this */ @@ -256,7 +256,7 @@ public function getSupportedOptions() /** * Sets supported_options * - * @param ?string[] $supported_options + * @param ?string[] $supported_options * * @return $this */ @@ -280,7 +280,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/PaymentProcessorInformation.php b/src/Model/PaymentProcessorInformation.php index dcd939d1..46dc227d 100644 --- a/src/Model/PaymentProcessorInformation.php +++ b/src/Model/PaymentProcessorInformation.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address'] = isset($data['address']) ? $data['address'] : null; $this->container['billing_agreement_id'] = isset($data['billing_agreement_id']) ? $data['billing_agreement_id'] : null; diff --git a/src/Model/PaymentSignerValues.php b/src/Model/PaymentSignerValues.php index adc278ed..a9cd4318 100644 --- a/src/Model/PaymentSignerValues.php +++ b/src/Model/PaymentSignerValues.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['payment_option'] = isset($data['payment_option']) ? $data['payment_option'] : null; } diff --git a/src/Model/PermissionProfile.php b/src/Model/PermissionProfile.php index 576fd35b..93f526c3 100644 --- a/src/Model/PermissionProfile.php +++ b/src/Model/PermissionProfile.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['modified_by_username'] = isset($data['modified_by_username']) ? $data['modified_by_username'] : null; $this->container['modified_date_time'] = isset($data['modified_date_time']) ? $data['modified_date_time'] : null; @@ -256,7 +256,7 @@ public function getModifiedByUsername() /** * Sets modified_by_username * - * @param ?string $modified_by_username + * @param ?string $modified_by_username * * @return $this */ @@ -280,7 +280,7 @@ public function getModifiedDateTime() /** * Sets modified_date_time * - * @param ?string $modified_date_time + * @param ?string $modified_date_time * * @return $this */ @@ -304,7 +304,7 @@ public function getPermissionProfileId() /** * Sets permission_profile_id * - * @param ?string $permission_profile_id + * @param ?string $permission_profile_id * * @return $this */ @@ -328,7 +328,7 @@ public function getPermissionProfileName() /** * Sets permission_profile_name * - * @param ?string $permission_profile_name + * @param ?string $permission_profile_name * * @return $this */ @@ -376,7 +376,7 @@ public function getUserCount() /** * Sets user_count * - * @param ?string $user_count + * @param ?string $user_count * * @return $this */ @@ -400,7 +400,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInformation[] $users + * @param \DocuSign\eSign\Model\UserInformation[] $users * * @return $this */ diff --git a/src/Model/PermissionProfileInformation.php b/src/Model/PermissionProfileInformation.php index 92718db0..86d47aa6 100644 --- a/src/Model/PermissionProfileInformation.php +++ b/src/Model/PermissionProfileInformation.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['permission_profiles'] = isset($data['permission_profiles']) ? $data['permission_profiles'] : null; } diff --git a/src/Model/PhoneNumber.php b/src/Model/PhoneNumber.php index bc609b43..5e768c4c 100644 --- a/src/Model/PhoneNumber.php +++ b/src/Model/PhoneNumber.php @@ -696,9 +696,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -862,7 +862,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -886,7 +886,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -910,7 +910,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1198,7 +1198,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1438,7 +1438,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1462,7 +1462,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1630,7 +1630,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1822,7 +1822,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1990,7 +1990,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2038,7 +2038,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2086,7 +2086,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2374,7 +2374,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2398,7 +2398,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2566,7 +2566,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2710,7 +2710,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2782,7 +2782,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2806,7 +2806,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2950,7 +2950,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2998,7 +2998,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3286,7 +3286,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/PlanInformation.php b/src/Model/PlanInformation.php index 93f717a2..2c3d6fb4 100644 --- a/src/Model/PlanInformation.php +++ b/src/Model/PlanInformation.php @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add_ons'] = isset($data['add_ons']) ? $data['add_ons'] : null; $this->container['currency_code'] = isset($data['currency_code']) ? $data['currency_code'] : null; diff --git a/src/Model/PolyLine.php b/src/Model/PolyLine.php index 7ea04c8d..814e29ae 100644 --- a/src/Model/PolyLine.php +++ b/src/Model/PolyLine.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['x1'] = isset($data['x1']) ? $data['x1'] : null; $this->container['x2'] = isset($data['x2']) ? $data['x2'] : null; diff --git a/src/Model/PolyLineOverlay.php b/src/Model/PolyLineOverlay.php index c33aef06..70808b34 100644 --- a/src/Model/PolyLineOverlay.php +++ b/src/Model/PolyLineOverlay.php @@ -586,9 +586,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -603,7 +603,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -730,7 +730,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -754,7 +754,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -778,7 +778,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1066,7 +1066,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1258,7 +1258,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1282,7 +1282,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1402,7 +1402,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1546,7 +1546,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1570,7 +1570,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1618,7 +1618,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1666,7 +1666,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1858,7 +1858,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1882,7 +1882,7 @@ public function getOverlayType() /** * Sets overlay_type * - * @param ?string $overlay_type + * @param ?string $overlay_type * * @return $this */ @@ -1978,7 +1978,7 @@ public function getPolyLines() /** * Sets poly_lines * - * @param \DocuSign\eSign\Model\PolyLine[] $poly_lines + * @param \DocuSign\eSign\Model\PolyLine[] $poly_lines * * @return $this */ @@ -2026,7 +2026,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2170,7 +2170,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2242,7 +2242,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2266,7 +2266,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2386,7 +2386,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2434,7 +2434,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2578,7 +2578,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2626,7 +2626,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/PowerForm.php b/src/Model/PowerForm.php index 111e1f49..f1012715 100644 --- a/src/Model/PowerForm.php +++ b/src/Model/PowerForm.php @@ -281,9 +281,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -298,7 +298,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created_by'] = isset($data['created_by']) ? $data['created_by'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -364,7 +364,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param ?string $created_by + * @param ?string $created_by * * @return $this */ @@ -460,7 +460,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param \DocuSign\eSign\Model\Envelope[] $envelopes + * @param \DocuSign\eSign\Model\Envelope[] $envelopes * * @return $this */ @@ -508,7 +508,7 @@ public function getInstructions() /** * Sets instructions * - * @param ?string $instructions + * @param ?string $instructions * * @return $this */ @@ -532,7 +532,7 @@ public function getIsActive() /** * Sets is_active * - * @param ?string $is_active + * @param ?string $is_active * * @return $this */ @@ -556,7 +556,7 @@ public function getLastUsed() /** * Sets last_used * - * @param ?string $last_used + * @param ?string $last_used * * @return $this */ @@ -580,7 +580,7 @@ public function getLimitUseInterval() /** * Sets limit_use_interval * - * @param ?string $limit_use_interval + * @param ?string $limit_use_interval * * @return $this */ @@ -604,7 +604,7 @@ public function getLimitUseIntervalEnabled() /** * Sets limit_use_interval_enabled * - * @param ?string $limit_use_interval_enabled + * @param ?string $limit_use_interval_enabled * * @return $this */ @@ -628,7 +628,7 @@ public function getLimitUseIntervalUnits() /** * Sets limit_use_interval_units * - * @param ?string $limit_use_interval_units + * @param ?string $limit_use_interval_units * * @return $this */ @@ -652,7 +652,7 @@ public function getMaxUseEnabled() /** * Sets max_use_enabled * - * @param ?string $max_use_enabled + * @param ?string $max_use_enabled * * @return $this */ @@ -676,7 +676,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -700,7 +700,7 @@ public function getPowerFormId() /** * Sets power_form_id * - * @param ?string $power_form_id + * @param ?string $power_form_id * * @return $this */ @@ -724,7 +724,7 @@ public function getPowerFormUrl() /** * Sets power_form_url * - * @param ?string $power_form_url + * @param ?string $power_form_url * * @return $this */ @@ -772,7 +772,7 @@ public function getSenderName() /** * Sets sender_name * - * @param ?string $sender_name + * @param ?string $sender_name * * @return $this */ @@ -796,7 +796,7 @@ public function getSenderUserId() /** * Sets sender_user_id * - * @param ?string $sender_user_id + * @param ?string $sender_user_id * * @return $this */ @@ -820,7 +820,7 @@ public function getSigningMode() /** * Sets signing_mode * - * @param ?string $signing_mode + * @param ?string $signing_mode * * @return $this */ @@ -868,7 +868,7 @@ public function getTemplateName() /** * Sets template_name * - * @param ?string $template_name + * @param ?string $template_name * * @return $this */ @@ -892,7 +892,7 @@ public function getTimesUsed() /** * Sets times_used * - * @param ?string $times_used + * @param ?string $times_used * * @return $this */ @@ -916,7 +916,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -940,7 +940,7 @@ public function getUsesRemaining() /** * Sets uses_remaining * - * @param ?string $uses_remaining + * @param ?string $uses_remaining * * @return $this */ diff --git a/src/Model/PowerFormFormDataEnvelope.php b/src/Model/PowerFormFormDataEnvelope.php index 0db75e77..9f215a9f 100644 --- a/src/Model/PowerFormFormDataEnvelope.php +++ b/src/Model/PowerFormFormDataEnvelope.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['recipients'] = isset($data['recipients']) ? $data['recipients'] : null; diff --git a/src/Model/PowerFormFormDataRecipient.php b/src/Model/PowerFormFormDataRecipient.php index f38c52da..083dcbfb 100644 --- a/src/Model/PowerFormFormDataRecipient.php +++ b/src/Model/PowerFormFormDataRecipient.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['form_data'] = isset($data['form_data']) ? $data['form_data'] : null; @@ -237,7 +237,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -261,7 +261,7 @@ public function getFormData() /** * Sets form_data * - * @param \DocuSign\eSign\Model\NameValue[] $form_data + * @param \DocuSign\eSign\Model\NameValue[] $form_data * * @return $this */ @@ -285,7 +285,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/PowerFormRecipient.php b/src/Model/PowerFormRecipient.php index e3778f92..4baec485 100644 --- a/src/Model/PowerFormRecipient.php +++ b/src/Model/PowerFormRecipient.php @@ -221,9 +221,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -238,7 +238,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_locked'] = isset($data['access_code_locked']) ? $data['access_code_locked'] : null; @@ -316,7 +316,7 @@ public function getAccessCodeLocked() /** * Sets access_code_locked * - * @param ?string $access_code_locked + * @param ?string $access_code_locked * * @return $this */ @@ -340,7 +340,7 @@ public function getAccessCodeRequired() /** * Sets access_code_required * - * @param ?string $access_code_required + * @param ?string $access_code_required * * @return $this */ @@ -364,7 +364,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -388,7 +388,7 @@ public function getEmailLocked() /** * Sets email_locked * - * @param ?string $email_locked + * @param ?string $email_locked * * @return $this */ @@ -436,7 +436,7 @@ public function getIdCheckRequired() /** * Sets id_check_required * - * @param ?string $id_check_required + * @param ?string $id_check_required * * @return $this */ @@ -460,7 +460,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -484,7 +484,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -556,7 +556,7 @@ public function getTemplateRequiresIdLookup() /** * Sets template_requires_id_lookup * - * @param ?string $template_requires_id_lookup + * @param ?string $template_requires_id_lookup * * @return $this */ @@ -580,7 +580,7 @@ public function getUserNameLocked() /** * Sets user_name_locked * - * @param ?string $user_name_locked + * @param ?string $user_name_locked * * @return $this */ diff --git a/src/Model/PowerFormSendersResponse.php b/src/Model/PowerFormSendersResponse.php index b6b5687b..f640a04f 100644 --- a/src/Model/PowerFormSendersResponse.php +++ b/src/Model/PowerFormSendersResponse.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -304,7 +304,7 @@ public function getPowerFormSenders() /** * Sets power_form_senders * - * @param \DocuSign\eSign\Model\UserInfo[] $power_form_senders + * @param \DocuSign\eSign\Model\UserInfo[] $power_form_senders * * @return $this */ diff --git a/src/Model/PowerFormsFormDataResponse.php b/src/Model/PowerFormsFormDataResponse.php index 31c3b95e..5f13a08e 100644 --- a/src/Model/PowerFormsFormDataResponse.php +++ b/src/Model/PowerFormsFormDataResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelopes'] = isset($data['envelopes']) ? $data['envelopes'] : null; } @@ -219,7 +219,7 @@ public function getEnvelopes() /** * Sets envelopes * - * @param \DocuSign\eSign\Model\PowerFormFormDataEnvelope[] $envelopes + * @param \DocuSign\eSign\Model\PowerFormFormDataEnvelope[] $envelopes * * @return $this */ diff --git a/src/Model/PowerFormsRequest.php b/src/Model/PowerFormsRequest.php index 1520c451..a8be92c0 100644 --- a/src/Model/PowerFormsRequest.php +++ b/src/Model/PowerFormsRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['power_forms'] = isset($data['power_forms']) ? $data['power_forms'] : null; } @@ -219,7 +219,7 @@ public function getPowerForms() /** * Sets power_forms * - * @param \DocuSign\eSign\Model\PowerForm[] $power_forms + * @param \DocuSign\eSign\Model\PowerForm[] $power_forms * * @return $this */ diff --git a/src/Model/PowerFormsResponse.php b/src/Model/PowerFormsResponse.php index c68d6f5a..9834d09b 100644 --- a/src/Model/PowerFormsResponse.php +++ b/src/Model/PowerFormsResponse.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -304,7 +304,7 @@ public function getPowerForms() /** * Sets power_forms * - * @param \DocuSign\eSign\Model\PowerForm[] $power_forms + * @param \DocuSign\eSign\Model\PowerForm[] $power_forms * * @return $this */ diff --git a/src/Model/PrefillFormData.php b/src/Model/PrefillFormData.php index 84ca65c0..3295c38e 100644 --- a/src/Model/PrefillFormData.php +++ b/src/Model/PrefillFormData.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['form_data'] = isset($data['form_data']) ? $data['form_data'] : null; $this->container['sender_email'] = isset($data['sender_email']) ? $data['sender_email'] : null; diff --git a/src/Model/PrefillTabs.php b/src/Model/PrefillTabs.php index bc08ba6e..d158b891 100644 --- a/src/Model/PrefillTabs.php +++ b/src/Model/PrefillTabs.php @@ -211,9 +211,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -228,7 +228,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['checkbox_tabs'] = isset($data['checkbox_tabs']) ? $data['checkbox_tabs'] : null; $this->container['date_tabs'] = isset($data['date_tabs']) ? $data['date_tabs'] : null; @@ -400,7 +400,7 @@ public function getSenderCompanyTabs() /** * Sets sender_company_tabs * - * @param \DocuSign\eSign\Model\SenderCompany[] $sender_company_tabs + * @param \DocuSign\eSign\Model\SenderCompany[] $sender_company_tabs * * @return $this */ @@ -424,7 +424,7 @@ public function getSenderNameTabs() /** * Sets sender_name_tabs * - * @param \DocuSign\eSign\Model\SenderName[] $sender_name_tabs + * @param \DocuSign\eSign\Model\SenderName[] $sender_name_tabs * * @return $this */ @@ -472,7 +472,7 @@ public function getTabGroups() /** * Sets tab_groups * - * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups + * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups * * @return $this */ diff --git a/src/Model/ProofServiceResourceToken.php b/src/Model/ProofServiceResourceToken.php index 57683561..1c82003c 100644 --- a/src/Model/ProofServiceResourceToken.php +++ b/src/Model/ProofServiceResourceToken.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['proof_base_uri'] = isset($data['proof_base_uri']) ? $data['proof_base_uri'] : null; $this->container['resource_token'] = isset($data['resource_token']) ? $data['resource_token'] : null; @@ -225,7 +225,7 @@ public function getProofBaseUri() /** * Sets proof_base_uri * - * @param ?string $proof_base_uri + * @param ?string $proof_base_uri * * @return $this */ @@ -249,7 +249,7 @@ public function getResourceToken() /** * Sets resource_token * - * @param ?string $resource_token + * @param ?string $resource_token * * @return $this */ diff --git a/src/Model/ProofServiceViewLink.php b/src/Model/ProofServiceViewLink.php index e6de1b01..f1165e93 100644 --- a/src/Model/ProofServiceViewLink.php +++ b/src/Model/ProofServiceViewLink.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['view_link'] = isset($data['view_link']) ? $data['view_link'] : null; } @@ -219,7 +219,7 @@ public function getViewLink() /** * Sets view_link * - * @param ?string $view_link + * @param ?string $view_link * * @return $this */ diff --git a/src/Model/PropertyMetadata.php b/src/Model/PropertyMetadata.php index a4b50996..12859a75 100644 --- a/src/Model/PropertyMetadata.php +++ b/src/Model/PropertyMetadata.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['options'] = isset($data['options']) ? $data['options'] : null; $this->container['rights'] = isset($data['rights']) ? $data['rights'] : null; @@ -226,7 +226,7 @@ public function getOptions() /** * Sets options * - * @param ?string[] $options + * @param ?string[] $options * * @return $this */ @@ -250,7 +250,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ diff --git a/src/Model/Province.php b/src/Model/Province.php index 393ea457..00f8a033 100644 --- a/src/Model/Province.php +++ b/src/Model/Province.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['iso_code'] = isset($data['iso_code']) ? $data['iso_code'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -225,7 +225,7 @@ public function getIsoCode() /** * Sets iso_code * - * @param ?string $iso_code + * @param ?string $iso_code * * @return $this */ @@ -249,7 +249,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ diff --git a/src/Model/ProvisioningInformation.php b/src/Model/ProvisioningInformation.php index 36deaff0..19219f1a 100644 --- a/src/Model/ProvisioningInformation.php +++ b/src/Model/ProvisioningInformation.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['default_connection_id'] = isset($data['default_connection_id']) ? $data['default_connection_id'] : null; $this->container['default_plan_id'] = isset($data['default_plan_id']) ? $data['default_plan_id'] : null; @@ -255,7 +255,7 @@ public function getDefaultConnectionId() /** * Sets default_connection_id * - * @param ?string $default_connection_id + * @param ?string $default_connection_id * * @return $this */ @@ -279,7 +279,7 @@ public function getDefaultPlanId() /** * Sets default_plan_id * - * @param ?string $default_plan_id + * @param ?string $default_plan_id * * @return $this */ @@ -351,7 +351,7 @@ public function getPasswordRuleText() /** * Sets password_rule_text * - * @param ?string $password_rule_text + * @param ?string $password_rule_text * * @return $this */ @@ -375,7 +375,7 @@ public function getPlanPromotionText() /** * Sets plan_promotion_text * - * @param ?string $plan_promotion_text + * @param ?string $plan_promotion_text * * @return $this */ @@ -399,7 +399,7 @@ public function getPurchaseOrderOrPromAllowed() /** * Sets purchase_order_or_prom_allowed * - * @param ?string $purchase_order_or_prom_allowed + * @param ?string $purchase_order_or_prom_allowed * * @return $this */ diff --git a/src/Model/PurchasedEnvelopesInformation.php b/src/Model/PurchasedEnvelopesInformation.php index 5245682b..66bd6856 100644 --- a/src/Model/PurchasedEnvelopesInformation.php +++ b/src/Model/PurchasedEnvelopesInformation.php @@ -200,9 +200,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -217,7 +217,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['app_name'] = isset($data['app_name']) ? $data['app_name'] : null; diff --git a/src/Model/Radio.php b/src/Model/Radio.php index e503e771..2ed10ac9 100644 --- a/src/Model/Radio.php +++ b/src/Model/Radio.php @@ -451,9 +451,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -468,7 +468,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['anchor_allow_white_space_in_characters'] = isset($data['anchor_allow_white_space_in_characters']) ? $data['anchor_allow_white_space_in_characters'] : null; $this->container['anchor_allow_white_space_in_characters_metadata'] = isset($data['anchor_allow_white_space_in_characters_metadata']) ? $data['anchor_allow_white_space_in_characters_metadata'] : null; @@ -568,7 +568,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -856,7 +856,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1096,7 +1096,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1120,7 +1120,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1144,7 +1144,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1192,7 +1192,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1456,7 +1456,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1672,7 +1672,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -1744,7 +1744,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ diff --git a/src/Model/RadioGroup.php b/src/Model/RadioGroup.php index 661db725..6c8e1ce7 100644 --- a/src/Model/RadioGroup.php +++ b/src/Model/RadioGroup.php @@ -321,9 +321,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -338,7 +338,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['conditional_parent_label'] = isset($data['conditional_parent_label']) ? $data['conditional_parent_label'] : null; $this->container['conditional_parent_label_metadata'] = isset($data['conditional_parent_label_metadata']) ? $data['conditional_parent_label_metadata'] : null; @@ -700,7 +700,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -916,7 +916,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -964,7 +964,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -1108,7 +1108,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ diff --git a/src/Model/RecipientAdditionalNotification.php b/src/Model/RecipientAdditionalNotification.php index ad5ca364..9e44f2c1 100644 --- a/src/Model/RecipientAdditionalNotification.php +++ b/src/Model/RecipientAdditionalNotification.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['phone_number'] = isset($data['phone_number']) ? $data['phone_number'] : null; $this->container['secondary_delivery_method'] = isset($data['secondary_delivery_method']) ? $data['secondary_delivery_method'] : null; @@ -262,7 +262,7 @@ public function getSecondaryDeliveryMethod() /** * Sets secondary_delivery_method * - * @param ?string $secondary_delivery_method + * @param ?string $secondary_delivery_method * * @return $this */ @@ -310,7 +310,7 @@ public function getSecondaryDeliveryStatus() /** * Sets secondary_delivery_status * - * @param ?string $secondary_delivery_status + * @param ?string $secondary_delivery_status * * @return $this */ diff --git a/src/Model/RecipientAttachment.php b/src/Model/RecipientAttachment.php index 3e9e2fa3..9198d130 100644 --- a/src/Model/RecipientAttachment.php +++ b/src/Model/RecipientAttachment.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attachment_id'] = isset($data['attachment_id']) ? $data['attachment_id'] : null; $this->container['attachment_type'] = isset($data['attachment_type']) ? $data['attachment_type'] : null; @@ -249,7 +249,7 @@ public function getAttachmentId() /** * Sets attachment_id * - * @param ?string $attachment_id + * @param ?string $attachment_id * * @return $this */ @@ -273,7 +273,7 @@ public function getAttachmentType() /** * Sets attachment_type * - * @param ?string $attachment_type + * @param ?string $attachment_type * * @return $this */ @@ -297,7 +297,7 @@ public function getData() /** * Sets data * - * @param ?string $data + * @param ?string $data * * @return $this */ @@ -321,7 +321,7 @@ public function getLabel() /** * Sets label * - * @param ?string $label + * @param ?string $label * * @return $this */ @@ -345,7 +345,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -369,7 +369,7 @@ public function getRemoteUrl() /** * Sets remote_url * - * @param ?string $remote_url + * @param ?string $remote_url * * @return $this */ diff --git a/src/Model/RecipientDomain.php b/src/Model/RecipientDomain.php index a4cb082f..2ac4f637 100644 --- a/src/Model/RecipientDomain.php +++ b/src/Model/RecipientDomain.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active'] = isset($data['active']) ? $data['active'] : null; $this->container['domain_code'] = isset($data['domain_code']) ? $data['domain_code'] : null; @@ -237,7 +237,7 @@ public function getActive() /** * Sets active * - * @param ?string $active + * @param ?string $active * * @return $this */ @@ -261,7 +261,7 @@ public function getDomainCode() /** * Sets domain_code * - * @param ?string $domain_code + * @param ?string $domain_code * * @return $this */ @@ -285,7 +285,7 @@ public function getDomainName() /** * Sets domain_name * - * @param ?string $domain_name + * @param ?string $domain_name * * @return $this */ @@ -309,7 +309,7 @@ public function getRecipientDomainId() /** * Sets recipient_domain_id * - * @param ?string $recipient_domain_id + * @param ?string $recipient_domain_id * * @return $this */ diff --git a/src/Model/RecipientEmailNotification.php b/src/Model/RecipientEmailNotification.php index c8c92b7c..a51fdd2c 100644 --- a/src/Model/RecipientEmailNotification.php +++ b/src/Model/RecipientEmailNotification.php @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email_body'] = isset($data['email_body']) ? $data['email_body'] : null; $this->container['email_body_metadata'] = isset($data['email_body_metadata']) ? $data['email_body_metadata'] : null; diff --git a/src/Model/RecipientEvent.php b/src/Model/RecipientEvent.php index 2cb1aacd..7770f9ca 100644 --- a/src/Model/RecipientEvent.php +++ b/src/Model/RecipientEvent.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['include_documents'] = isset($data['include_documents']) ? $data['include_documents'] : null; $this->container['recipient_event_status_code'] = isset($data['recipient_event_status_code']) ? $data['recipient_event_status_code'] : null; diff --git a/src/Model/RecipientFormData.php b/src/Model/RecipientFormData.php index ffb65574..068283a1 100644 --- a/src/Model/RecipientFormData.php +++ b/src/Model/RecipientFormData.php @@ -195,9 +195,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -212,7 +212,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['declined_time'] = isset($data['declined_time']) ? $data['declined_time'] : null; $this->container['delivered_time'] = isset($data['delivered_time']) ? $data['delivered_time'] : null; @@ -261,7 +261,7 @@ public function getDeclinedTime() /** * Sets declined_time * - * @param ?string $declined_time + * @param ?string $declined_time * * @return $this */ @@ -285,7 +285,7 @@ public function getDeliveredTime() /** * Sets delivered_time * - * @param ?string $delivered_time + * @param ?string $delivered_time * * @return $this */ @@ -309,7 +309,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -333,7 +333,7 @@ public function getFormData() /** * Sets form_data * - * @param \DocuSign\eSign\Model\FormDataItem[] $form_data + * @param \DocuSign\eSign\Model\FormDataItem[] $form_data * * @return $this */ @@ -357,7 +357,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -405,7 +405,7 @@ public function getSentTime() /** * Sets sent_time * - * @param ?string $sent_time + * @param ?string $sent_time * * @return $this */ @@ -429,7 +429,7 @@ public function getSignedTime() /** * Sets signed_time * - * @param ?string $signed_time + * @param ?string $signed_time * * @return $this */ diff --git a/src/Model/RecipientGroup.php b/src/Model/RecipientGroup.php index 84ee92e8..7b6c2f27 100644 --- a/src/Model/RecipientGroup.php +++ b/src/Model/RecipientGroup.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['group_message'] = isset($data['group_message']) ? $data['group_message'] : null; $this->container['group_name'] = isset($data['group_name']) ? $data['group_name'] : null; @@ -232,7 +232,7 @@ public function getGroupMessage() /** * Sets group_message * - * @param ?string $group_message + * @param ?string $group_message * * @return $this */ diff --git a/src/Model/RecipientIdentityInputOption.php b/src/Model/RecipientIdentityInputOption.php index 44a3655f..5a632de6 100644 --- a/src/Model/RecipientIdentityInputOption.php +++ b/src/Model/RecipientIdentityInputOption.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['phone_number_list'] = isset($data['phone_number_list']) ? $data['phone_number_list'] : null; @@ -237,7 +237,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -261,7 +261,7 @@ public function getPhoneNumberList() /** * Sets phone_number_list * - * @param \DocuSign\eSign\Model\RecipientIdentityPhoneNumber[] $phone_number_list + * @param \DocuSign\eSign\Model\RecipientIdentityPhoneNumber[] $phone_number_list * * @return $this */ @@ -285,7 +285,7 @@ public function getStringValue() /** * Sets string_value * - * @param ?string $string_value + * @param ?string $string_value * * @return $this */ @@ -309,7 +309,7 @@ public function getValueType() /** * Sets value_type * - * @param ?string $value_type + * @param ?string $value_type * * @return $this */ diff --git a/src/Model/RecipientIdentityPhoneNumber.php b/src/Model/RecipientIdentityPhoneNumber.php index 21b97229..202aea47 100644 --- a/src/Model/RecipientIdentityPhoneNumber.php +++ b/src/Model/RecipientIdentityPhoneNumber.php @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; $this->container['country_code_lock'] = isset($data['country_code_lock']) ? $data['country_code_lock'] : null; diff --git a/src/Model/RecipientIdentityVerification.php b/src/Model/RecipientIdentityVerification.php index a390586c..9c32bfdd 100644 --- a/src/Model/RecipientIdentityVerification.php +++ b/src/Model/RecipientIdentityVerification.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['input_options'] = isset($data['input_options']) ? $data['input_options'] : null; $this->container['workflow_id'] = isset($data['workflow_id']) ? $data['workflow_id'] : null; @@ -238,7 +238,7 @@ public function getInputOptions() /** * Sets input_options * - * @param \DocuSign\eSign\Model\RecipientIdentityInputOption[] $input_options + * @param \DocuSign\eSign\Model\RecipientIdentityInputOption[] $input_options * * @return $this */ @@ -262,7 +262,7 @@ public function getWorkflowId() /** * Sets workflow_id * - * @param ?string $workflow_id + * @param ?string $workflow_id * * @return $this */ @@ -286,7 +286,7 @@ public function getWorkflowIdMetadata() /** * Sets workflow_id_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $workflow_id_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $workflow_id_metadata * * @return $this */ @@ -310,7 +310,7 @@ public function getWorkflowLabel() /** * Sets workflow_label * - * @param ?string $workflow_label + * @param ?string $workflow_label * * @return $this */ diff --git a/src/Model/RecipientNamesResponse.php b/src/Model/RecipientNamesResponse.php index f164e11f..773da518 100644 --- a/src/Model/RecipientNamesResponse.php +++ b/src/Model/RecipientNamesResponse.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['multiple_users'] = isset($data['multiple_users']) ? $data['multiple_users'] : null; $this->container['recipient_names'] = isset($data['recipient_names']) ? $data['recipient_names'] : null; @@ -256,7 +256,7 @@ public function getRecipientNames() /** * Sets recipient_names * - * @param ?string[] $recipient_names + * @param ?string[] $recipient_names * * @return $this */ @@ -280,7 +280,7 @@ public function getReservedRecipientEmail() /** * Sets reserved_recipient_email * - * @param ?string $reserved_recipient_email + * @param ?string $reserved_recipient_email * * @return $this */ diff --git a/src/Model/RecipientOption.php b/src/Model/RecipientOption.php index 72b06f80..daeeba82 100644 --- a/src/Model/RecipientOption.php +++ b/src/Model/RecipientOption.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -244,7 +244,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -268,7 +268,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -292,7 +292,7 @@ public function getRecipientLabel() /** * Sets recipient_label * - * @param ?string $recipient_label + * @param ?string $recipient_label * * @return $this */ diff --git a/src/Model/RecipientPhoneAuthentication.php b/src/Model/RecipientPhoneAuthentication.php index 141235aa..627acae8 100644 --- a/src/Model/RecipientPhoneAuthentication.php +++ b/src/Model/RecipientPhoneAuthentication.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['recip_may_provide_number'] = isset($data['recip_may_provide_number']) ? $data['recip_may_provide_number'] : null; $this->container['recip_may_provide_number_metadata'] = isset($data['recip_may_provide_number_metadata']) ? $data['recip_may_provide_number_metadata'] : null; diff --git a/src/Model/RecipientPhoneNumber.php b/src/Model/RecipientPhoneNumber.php index 40c4ec30..b0a7862c 100644 --- a/src/Model/RecipientPhoneNumber.php +++ b/src/Model/RecipientPhoneNumber.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; $this->container['country_code_metadata'] = isset($data['country_code_metadata']) ? $data['country_code_metadata'] : null; @@ -238,7 +238,7 @@ public function getCountryCode() /** * Sets country_code * - * @param ?string $country_code + * @param ?string $country_code * * @return $this */ @@ -286,7 +286,7 @@ public function getNumber() /** * Sets number * - * @param ?string $number + * @param ?string $number * * @return $this */ diff --git a/src/Model/RecipientPreviewRequest.php b/src/Model/RecipientPreviewRequest.php index 4b711483..63ad62c4 100644 --- a/src/Model/RecipientPreviewRequest.php +++ b/src/Model/RecipientPreviewRequest.php @@ -211,9 +211,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -228,7 +228,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['assertion_id'] = isset($data['assertion_id']) ? $data['assertion_id'] : null; $this->container['authentication_instant'] = isset($data['authentication_instant']) ? $data['authentication_instant'] : null; @@ -280,7 +280,7 @@ public function getAssertionId() /** * Sets assertion_id * - * @param ?string $assertion_id + * @param ?string $assertion_id * * @return $this */ @@ -304,7 +304,7 @@ public function getAuthenticationInstant() /** * Sets authentication_instant * - * @param ?string $authentication_instant + * @param ?string $authentication_instant * * @return $this */ @@ -328,7 +328,7 @@ public function getAuthenticationMethod() /** * Sets authentication_method * - * @param ?string $authentication_method + * @param ?string $authentication_method * * @return $this */ @@ -352,7 +352,7 @@ public function getClientUrLs() /** * Sets client_ur_ls * - * @param \DocuSign\eSign\Model\RecipientTokenClientURLs $client_ur_ls + * @param \DocuSign\eSign\Model\RecipientTokenClientURLs $client_ur_ls * * @return $this */ @@ -376,7 +376,7 @@ public function getPingFrequency() /** * Sets ping_frequency * - * @param ?string $ping_frequency + * @param ?string $ping_frequency * * @return $this */ @@ -400,7 +400,7 @@ public function getPingUrl() /** * Sets ping_url * - * @param ?string $ping_url + * @param ?string $ping_url * * @return $this */ @@ -448,7 +448,7 @@ public function getReturnUrl() /** * Sets return_url * - * @param ?string $return_url + * @param ?string $return_url * * @return $this */ @@ -472,7 +472,7 @@ public function getSecurityDomain() /** * Sets security_domain * - * @param ?string $security_domain + * @param ?string $security_domain * * @return $this */ @@ -496,7 +496,7 @@ public function getXFrameOptions() /** * Sets x_frame_options * - * @param ?string $x_frame_options + * @param ?string $x_frame_options * * @return $this */ @@ -520,7 +520,7 @@ public function getXFrameOptionsAllowFromUrl() /** * Sets x_frame_options_allow_from_url * - * @param ?string $x_frame_options_allow_from_url + * @param ?string $x_frame_options_allow_from_url * * @return $this */ diff --git a/src/Model/RecipientProofFile.php b/src/Model/RecipientProofFile.php index aeedc4a4..73943bed 100644 --- a/src/Model/RecipientProofFile.php +++ b/src/Model/RecipientProofFile.php @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['has_identity_attempts'] = isset($data['has_identity_attempts']) ? $data['has_identity_attempts'] : null; $this->container['is_in_proof_file'] = isset($data['is_in_proof_file']) ? $data['is_in_proof_file'] : null; diff --git a/src/Model/RecipientRouting.php b/src/Model/RecipientRouting.php index c0c4e07d..0d71078f 100644 --- a/src/Model/RecipientRouting.php +++ b/src/Model/RecipientRouting.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['rules'] = isset($data['rules']) ? $data['rules'] : null; } diff --git a/src/Model/RecipientRules.php b/src/Model/RecipientRules.php index 6228ac59..2012099f 100644 --- a/src/Model/RecipientRules.php +++ b/src/Model/RecipientRules.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['conditional_recipients'] = isset($data['conditional_recipients']) ? $data['conditional_recipients'] : null; } @@ -219,7 +219,7 @@ public function getConditionalRecipients() /** * Sets conditional_recipients * - * @param \DocuSign\eSign\Model\ConditionalRecipientRule[] $conditional_recipients + * @param \DocuSign\eSign\Model\ConditionalRecipientRule[] $conditional_recipients * * @return $this */ diff --git a/src/Model/RecipientSAMLAuthentication.php b/src/Model/RecipientSAMLAuthentication.php index a8e59e95..13c1eb51 100644 --- a/src/Model/RecipientSAMLAuthentication.php +++ b/src/Model/RecipientSAMLAuthentication.php @@ -104,9 +104,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -118,7 +118,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['saml_assertion_attributes'] = isset($data['saml_assertion_attributes']) ? $data['saml_assertion_attributes'] : null; } @@ -157,7 +157,7 @@ public function getSamlAssertionAttributes() /** * Sets saml_assertion_attributes - * @param \DocuSign\eSign\Model\SamlAssertionAttribute[] $saml_assertion_attributes + * @param \DocuSign\eSign\Model\SamlAssertionAttribute[] $saml_assertion_attributes * @return $this */ public function setSamlAssertionAttributes($saml_assertion_attributes) diff --git a/src/Model/RecipientSMSAuthentication.php b/src/Model/RecipientSMSAuthentication.php index 92333bdf..6026b735 100644 --- a/src/Model/RecipientSMSAuthentication.php +++ b/src/Model/RecipientSMSAuthentication.php @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sender_provided_numbers'] = isset($data['sender_provided_numbers']) ? $data['sender_provided_numbers'] : null; $this->container['sender_provided_numbers_metadata'] = isset($data['sender_provided_numbers_metadata']) ? $data['sender_provided_numbers_metadata'] : null; diff --git a/src/Model/RecipientSignatureInformation.php b/src/Model/RecipientSignatureInformation.php index d9798833..20af684d 100644 --- a/src/Model/RecipientSignatureInformation.php +++ b/src/Model/RecipientSignatureInformation.php @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['font_style'] = isset($data['font_style']) ? $data['font_style'] : null; $this->container['signature_initials'] = isset($data['signature_initials']) ? $data['signature_initials'] : null; diff --git a/src/Model/RecipientSignatureProvider.php b/src/Model/RecipientSignatureProvider.php index f66620df..40cfed8f 100644 --- a/src/Model/RecipientSignatureProvider.php +++ b/src/Model/RecipientSignatureProvider.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['seal_documents_with_tabs_only'] = isset($data['seal_documents_with_tabs_only']) ? $data['seal_documents_with_tabs_only'] : null; $this->container['seal_name'] = isset($data['seal_name']) ? $data['seal_name'] : null; @@ -244,7 +244,7 @@ public function getSealDocumentsWithTabsOnly() /** * Sets seal_documents_with_tabs_only * - * @param ?string $seal_documents_with_tabs_only + * @param ?string $seal_documents_with_tabs_only * * @return $this */ @@ -268,7 +268,7 @@ public function getSealName() /** * Sets seal_name * - * @param ?string $seal_name + * @param ?string $seal_name * * @return $this */ @@ -292,7 +292,7 @@ public function getSignatureProviderName() /** * Sets signature_provider_name * - * @param ?string $signature_provider_name + * @param ?string $signature_provider_name * * @return $this */ diff --git a/src/Model/RecipientSignatureProviderOptions.php b/src/Model/RecipientSignatureProviderOptions.php index 8cc7acc2..46af615d 100644 --- a/src/Model/RecipientSignatureProviderOptions.php +++ b/src/Model/RecipientSignatureProviderOptions.php @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cpf_number'] = isset($data['cpf_number']) ? $data['cpf_number'] : null; $this->container['cpf_number_metadata'] = isset($data['cpf_number_metadata']) ? $data['cpf_number_metadata'] : null; diff --git a/src/Model/RecipientTokenClientURLs.php b/src/Model/RecipientTokenClientURLs.php index e82e18af..c4d75635 100644 --- a/src/Model/RecipientTokenClientURLs.php +++ b/src/Model/RecipientTokenClientURLs.php @@ -205,9 +205,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -222,7 +222,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['on_access_code_failed'] = isset($data['on_access_code_failed']) ? $data['on_access_code_failed'] : null; $this->container['on_cancel'] = isset($data['on_cancel']) ? $data['on_cancel'] : null; @@ -273,7 +273,7 @@ public function getOnAccessCodeFailed() /** * Sets on_access_code_failed * - * @param ?string $on_access_code_failed + * @param ?string $on_access_code_failed * * @return $this */ @@ -297,7 +297,7 @@ public function getOnCancel() /** * Sets on_cancel * - * @param ?string $on_cancel + * @param ?string $on_cancel * * @return $this */ @@ -321,7 +321,7 @@ public function getOnDecline() /** * Sets on_decline * - * @param ?string $on_decline + * @param ?string $on_decline * * @return $this */ @@ -345,7 +345,7 @@ public function getOnException() /** * Sets on_exception * - * @param ?string $on_exception + * @param ?string $on_exception * * @return $this */ @@ -369,7 +369,7 @@ public function getOnFaxPending() /** * Sets on_fax_pending * - * @param ?string $on_fax_pending + * @param ?string $on_fax_pending * * @return $this */ @@ -393,7 +393,7 @@ public function getOnIdCheckFailed() /** * Sets on_id_check_failed * - * @param ?string $on_id_check_failed + * @param ?string $on_id_check_failed * * @return $this */ @@ -417,7 +417,7 @@ public function getOnSessionTimeout() /** * Sets on_session_timeout * - * @param ?string $on_session_timeout + * @param ?string $on_session_timeout * * @return $this */ @@ -441,7 +441,7 @@ public function getOnSigningComplete() /** * Sets on_signing_complete * - * @param ?string $on_signing_complete + * @param ?string $on_signing_complete * * @return $this */ @@ -465,7 +465,7 @@ public function getOnTtlExpired() /** * Sets on_ttl_expired * - * @param ?string $on_ttl_expired + * @param ?string $on_ttl_expired * * @return $this */ @@ -489,7 +489,7 @@ public function getOnViewingComplete() /** * Sets on_viewing_complete * - * @param ?string $on_viewing_complete + * @param ?string $on_viewing_complete * * @return $this */ diff --git a/src/Model/RecipientUpdateResponse.php b/src/Model/RecipientUpdateResponse.php index a47f880a..f8cbad98 100644 --- a/src/Model/RecipientUpdateResponse.php +++ b/src/Model/RecipientUpdateResponse.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['combined'] = isset($data['combined']) ? $data['combined'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -244,7 +244,7 @@ public function getCombined() /** * Sets combined * - * @param ?string $combined + * @param ?string $combined * * @return $this */ @@ -316,7 +316,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ diff --git a/src/Model/RecipientViewRequest.php b/src/Model/RecipientViewRequest.php index 01959712..8594dc85 100644 --- a/src/Model/RecipientViewRequest.php +++ b/src/Model/RecipientViewRequest.php @@ -246,9 +246,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -263,7 +263,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['assertion_id'] = isset($data['assertion_id']) ? $data['assertion_id'] : null; $this->container['authentication_instant'] = isset($data['authentication_instant']) ? $data['authentication_instant'] : null; @@ -394,7 +394,7 @@ public function getClientUrLs() /** * Sets client_ur_ls * - * @param \DocuSign\eSign\Model\RecipientTokenClientURLs $client_ur_ls + * @param \DocuSign\eSign\Model\RecipientTokenClientURLs $client_ur_ls * * @return $this */ @@ -442,7 +442,7 @@ public function getDisplayFormat() /** * Sets display_format * - * @param ?string $display_format + * @param ?string $display_format * * @return $this */ @@ -490,7 +490,7 @@ public function getFrameAncestors() /** * Sets frame_ancestors * - * @param ?string[] $frame_ancestors + * @param ?string[] $frame_ancestors * * @return $this */ @@ -514,7 +514,7 @@ public function getMessageOrigins() /** * Sets message_origins * - * @param ?string[] $message_origins + * @param ?string[] $message_origins * * @return $this */ @@ -706,7 +706,7 @@ public function getXFrameOptions() /** * Sets x_frame_options * - * @param ?string $x_frame_options + * @param ?string $x_frame_options * * @return $this */ @@ -730,7 +730,7 @@ public function getXFrameOptionsAllowFromUrl() /** * Sets x_frame_options_allow_from_url * - * @param ?string $x_frame_options_allow_from_url + * @param ?string $x_frame_options_allow_from_url * * @return $this */ diff --git a/src/Model/Recipients.php b/src/Model/Recipients.php index b0d063cd..e36ca27f 100644 --- a/src/Model/Recipients.php +++ b/src/Model/Recipients.php @@ -226,9 +226,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -243,7 +243,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agents'] = isset($data['agents']) ? $data['agents'] : null; $this->container['carbon_copies'] = isset($data['carbon_copies']) ? $data['carbon_copies'] : null; @@ -370,7 +370,7 @@ public function getCurrentRoutingOrder() /** * Sets current_routing_order * - * @param ?string $current_routing_order + * @param ?string $current_routing_order * * @return $this */ @@ -490,7 +490,7 @@ public function getNotaries() /** * Sets notaries * - * @param \DocuSign\eSign\Model\NotaryRecipient[] $notaries + * @param \DocuSign\eSign\Model\NotaryRecipient[] $notaries * * @return $this */ @@ -514,7 +514,7 @@ public function getParticipants() /** * Sets participants * - * @param \DocuSign\eSign\Model\Participant[] $participants + * @param \DocuSign\eSign\Model\Participant[] $participants * * @return $this */ @@ -538,7 +538,7 @@ public function getRecipientCount() /** * Sets recipient_count * - * @param ?string $recipient_count + * @param ?string $recipient_count * * @return $this */ @@ -562,7 +562,7 @@ public function getSeals() /** * Sets seals * - * @param \DocuSign\eSign\Model\SealSign[] $seals + * @param \DocuSign\eSign\Model\SealSign[] $seals * * @return $this */ @@ -610,7 +610,7 @@ public function getWitnesses() /** * Sets witnesses * - * @param \DocuSign\eSign\Model\Witness[] $witnesses + * @param \DocuSign\eSign\Model\Witness[] $witnesses * * @return $this */ diff --git a/src/Model/RecipientsUpdateSummary.php b/src/Model/RecipientsUpdateSummary.php index 640c77a9..8ac827a6 100644 --- a/src/Model/RecipientsUpdateSummary.php +++ b/src/Model/RecipientsUpdateSummary.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['recipient_update_results'] = isset($data['recipient_update_results']) ? $data['recipient_update_results'] : null; } @@ -220,7 +220,7 @@ public function getRecipientUpdateResults() /** * Sets recipient_update_results * - * @param \DocuSign\eSign\Model\RecipientUpdateResponse[] $recipient_update_results + * @param \DocuSign\eSign\Model\RecipientUpdateResponse[] $recipient_update_results * * @return $this */ diff --git a/src/Model/ReferralInformation.php b/src/Model/ReferralInformation.php index 29da70ad..859b6865 100644 --- a/src/Model/ReferralInformation.php +++ b/src/Model/ReferralInformation.php @@ -246,9 +246,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -263,7 +263,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['advertisement_id'] = isset($data['advertisement_id']) ? $data['advertisement_id'] : null; $this->container['enable_support'] = isset($data['enable_support']) ? $data['enable_support'] : null; @@ -370,7 +370,7 @@ public function getExternalOrgId() /** * Sets external_org_id * - * @param ?string $external_org_id + * @param ?string $external_org_id * * @return $this */ @@ -394,7 +394,7 @@ public function getGroupMemberId() /** * Sets group_member_id * - * @param ?string $group_member_id + * @param ?string $group_member_id * * @return $this */ @@ -418,7 +418,7 @@ public function getIdType() /** * Sets id_type * - * @param ?string $id_type + * @param ?string $id_type * * @return $this */ @@ -466,7 +466,7 @@ public function getIndustry() /** * Sets industry * - * @param ?string $industry + * @param ?string $industry * * @return $this */ @@ -490,7 +490,7 @@ public function getPlanStartMonth() /** * Sets plan_start_month * - * @param ?string $plan_start_month + * @param ?string $plan_start_month * * @return $this */ @@ -514,7 +514,7 @@ public function getPromoCode() /** * Sets promo_code * - * @param ?string $promo_code + * @param ?string $promo_code * * @return $this */ @@ -538,7 +538,7 @@ public function getPublisherId() /** * Sets publisher_id * - * @param ?string $publisher_id + * @param ?string $publisher_id * * @return $this */ @@ -562,7 +562,7 @@ public function getReferralCode() /** * Sets referral_code * - * @param ?string $referral_code + * @param ?string $referral_code * * @return $this */ @@ -586,7 +586,7 @@ public function getReferrerName() /** * Sets referrer_name * - * @param ?string $referrer_name + * @param ?string $referrer_name * * @return $this */ @@ -730,7 +730,7 @@ public function getShopperId() /** * Sets shopper_id * - * @param ?string $shopper_id + * @param ?string $shopper_id * * @return $this */ diff --git a/src/Model/Reminders.php b/src/Model/Reminders.php index e07c6a5a..2ff0a6c7 100644 --- a/src/Model/Reminders.php +++ b/src/Model/Reminders.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['reminder_delay'] = isset($data['reminder_delay']) ? $data['reminder_delay'] : null; $this->container['reminder_enabled'] = isset($data['reminder_enabled']) ? $data['reminder_enabled'] : null; diff --git a/src/Model/ReportInProductCsvRunRequest.php b/src/Model/ReportInProductCsvRunRequest.php index 348f9b4c..01547e9a 100644 --- a/src/Model/ReportInProductCsvRunRequest.php +++ b/src/Model/ReportInProductCsvRunRequest.php @@ -295,9 +295,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -312,7 +312,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_success_filter'] = isset($data['authentication_success_filter']) ? $data['authentication_success_filter'] : null; $this->container['custom_field_filter'] = isset($data['custom_field_filter']) ? $data['custom_field_filter'] : null; @@ -381,7 +381,7 @@ public function getAuthenticationSuccessFilter() /** * Sets authentication_success_filter * - * @param ?string $authentication_success_filter + * @param ?string $authentication_success_filter * * @return $this */ @@ -405,7 +405,7 @@ public function getCustomFieldFilter() /** * Sets custom_field_filter * - * @param ?string $custom_field_filter + * @param ?string $custom_field_filter * * @return $this */ @@ -429,7 +429,7 @@ public function getDateRangeCustomFromDate() /** * Sets date_range_custom_from_date * - * @param ?string $date_range_custom_from_date + * @param ?string $date_range_custom_from_date * * @return $this */ @@ -453,7 +453,7 @@ public function getDateRangeCustomToDate() /** * Sets date_range_custom_to_date * - * @param ?string $date_range_custom_to_date + * @param ?string $date_range_custom_to_date * * @return $this */ @@ -477,7 +477,7 @@ public function getDateRangeFilter() /** * Sets date_range_filter * - * @param ?string $date_range_filter + * @param ?string $date_range_filter * * @return $this */ @@ -501,7 +501,7 @@ public function getEnvelopeDateTypeFilter() /** * Sets envelope_date_type_filter * - * @param ?string $envelope_date_type_filter + * @param ?string $envelope_date_type_filter * * @return $this */ @@ -525,7 +525,7 @@ public function getEnvelopeRecipientNameContainsFilter() /** * Sets envelope_recipient_name_contains_filter * - * @param ?string $envelope_recipient_name_contains_filter + * @param ?string $envelope_recipient_name_contains_filter * * @return $this */ @@ -549,7 +549,7 @@ public function getEnvelopeStatusFilter() /** * Sets envelope_status_filter * - * @param ?string $envelope_status_filter + * @param ?string $envelope_status_filter * * @return $this */ @@ -573,7 +573,7 @@ public function getEnvelopeSubjectContainsFilter() /** * Sets envelope_subject_contains_filter * - * @param ?string $envelope_subject_contains_filter + * @param ?string $envelope_subject_contains_filter * * @return $this */ @@ -597,7 +597,7 @@ public function getFields() /** * Sets fields * - * @param \DocuSign\eSign\Model\ReportInProductField[] $fields + * @param \DocuSign\eSign\Model\ReportInProductField[] $fields * * @return $this */ @@ -621,7 +621,7 @@ public function getForDownload() /** * Sets for_download * - * @param ?string $for_download + * @param ?string $for_download * * @return $this */ @@ -645,7 +645,7 @@ public function getIsDashboard() /** * Sets is_dashboard * - * @param ?string $is_dashboard + * @param ?string $is_dashboard * * @return $this */ @@ -669,7 +669,7 @@ public function getNewLine() /** * Sets new_line * - * @param ?string $new_line + * @param ?string $new_line * * @return $this */ @@ -693,7 +693,7 @@ public function getOverrideTimezoneKey() /** * Sets override_timezone_key * - * @param ?string $override_timezone_key + * @param ?string $override_timezone_key * * @return $this */ @@ -717,7 +717,7 @@ public function getPeriodLengthFilter() /** * Sets period_length_filter * - * @param ?string $period_length_filter + * @param ?string $period_length_filter * * @return $this */ @@ -741,7 +741,7 @@ public function getQuote() /** * Sets quote * - * @param ?string $quote + * @param ?string $quote * * @return $this */ @@ -765,7 +765,7 @@ public function getReportCustomizedId() /** * Sets report_customized_id * - * @param ?string $report_customized_id + * @param ?string $report_customized_id * * @return $this */ @@ -789,7 +789,7 @@ public function getReportDescription() /** * Sets report_description * - * @param ?string $report_description + * @param ?string $report_description * * @return $this */ @@ -813,7 +813,7 @@ public function getReportId() /** * Sets report_id * - * @param ?string $report_id + * @param ?string $report_id * * @return $this */ @@ -837,7 +837,7 @@ public function getReportInvocationType() /** * Sets report_invocation_type * - * @param ?string $report_invocation_type + * @param ?string $report_invocation_type * * @return $this */ @@ -861,7 +861,7 @@ public function getReportName() /** * Sets report_name * - * @param ?string $report_name + * @param ?string $report_name * * @return $this */ @@ -885,7 +885,7 @@ public function getSentByFilter() /** * Sets sent_by_filter * - * @param ?string $sent_by_filter + * @param ?string $sent_by_filter * * @return $this */ @@ -909,7 +909,7 @@ public function getSentByIds() /** * Sets sent_by_ids * - * @param ?string $sent_by_ids + * @param ?string $sent_by_ids * * @return $this */ @@ -933,7 +933,7 @@ public function getSeparator() /** * Sets separator * - * @param ?string $separator + * @param ?string $separator * * @return $this */ @@ -957,7 +957,7 @@ public function getSortDirection() /** * Sets sort_direction * - * @param ?string $sort_direction + * @param ?string $sort_direction * * @return $this */ @@ -981,7 +981,7 @@ public function getSortField() /** * Sets sort_field * - * @param ?string $sort_field + * @param ?string $sort_field * * @return $this */ @@ -1029,7 +1029,7 @@ public function getVerificationStatusFilter() /** * Sets verification_status_filter * - * @param ?string $verification_status_filter + * @param ?string $verification_status_filter * * @return $this */ diff --git a/src/Model/ReportInProductField.php b/src/Model/ReportInProductField.php index 0e8c760a..8ee12892 100644 --- a/src/Model/ReportInProductField.php +++ b/src/Model/ReportInProductField.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['display_order'] = isset($data['display_order']) ? $data['display_order'] : null; $this->container['field_version'] = isset($data['field_version']) ? $data['field_version'] : null; @@ -237,7 +237,7 @@ public function getDisplayOrder() /** * Sets display_order * - * @param ?string $display_order + * @param ?string $display_order * * @return $this */ @@ -261,7 +261,7 @@ public function getFieldVersion() /** * Sets field_version * - * @param ?string $field_version + * @param ?string $field_version * * @return $this */ @@ -285,7 +285,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -309,7 +309,7 @@ public function getSelected() /** * Sets selected * - * @param ?string $selected + * @param ?string $selected * * @return $this */ diff --git a/src/Model/ReportInProductGet.php b/src/Model/ReportInProductGet.php index 048a06a6..8965bcdb 100644 --- a/src/Model/ReportInProductGet.php +++ b/src/Model/ReportInProductGet.php @@ -327,7 +327,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_success_filter'] = isset($data['authentication_success_filter']) ? $data['authentication_success_filter'] : null; $this->container['custom_field_filter'] = isset($data['custom_field_filter']) ? $data['custom_field_filter'] : null; diff --git a/src/Model/ReportInProductList.php b/src/Model/ReportInProductList.php index 273779fd..de33dfad 100644 --- a/src/Model/ReportInProductList.php +++ b/src/Model/ReportInProductList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['reports'] = isset($data['reports']) ? $data['reports'] : null; } @@ -219,7 +219,7 @@ public function getReports() /** * Sets reports * - * @param \DocuSign\eSign\Model\ReportInProductListItem[] $reports + * @param \DocuSign\eSign\Model\ReportInProductListItem[] $reports * * @return $this */ diff --git a/src/Model/ReportInProductListItem.php b/src/Model/ReportInProductListItem.php index 0a4f5037..a6e8f871 100644 --- a/src/Model/ReportInProductListItem.php +++ b/src/Model/ReportInProductListItem.php @@ -225,9 +225,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['get_uri'] = isset($data['get_uri']) ? $data['get_uri'] : null; $this->container['last_scheduled_execution_date'] = isset($data['last_scheduled_execution_date']) ? $data['last_scheduled_execution_date'] : null; @@ -297,7 +297,7 @@ public function getGetUri() /** * Sets get_uri * - * @param ?string $get_uri + * @param ?string $get_uri * * @return $this */ @@ -321,7 +321,7 @@ public function getLastScheduledExecutionDate() /** * Sets last_scheduled_execution_date * - * @param ?string $last_scheduled_execution_date + * @param ?string $last_scheduled_execution_date * * @return $this */ @@ -345,7 +345,7 @@ public function getLastScheduledExecutionSuccessDate() /** * Sets last_scheduled_execution_success_date * - * @param ?string $last_scheduled_execution_success_date + * @param ?string $last_scheduled_execution_success_date * * @return $this */ @@ -369,7 +369,7 @@ public function getReportCustomizedId() /** * Sets report_customized_id * - * @param ?string $report_customized_id + * @param ?string $report_customized_id * * @return $this */ @@ -393,7 +393,7 @@ public function getReportDescription() /** * Sets report_description * - * @param ?string $report_description + * @param ?string $report_description * * @return $this */ @@ -417,7 +417,7 @@ public function getReportId() /** * Sets report_id * - * @param ?string $report_id + * @param ?string $report_id * * @return $this */ @@ -441,7 +441,7 @@ public function getReportName() /** * Sets report_name * - * @param ?string $report_name + * @param ?string $report_name * * @return $this */ @@ -465,7 +465,7 @@ public function getReportType() /** * Sets report_type * - * @param ?string $report_type + * @param ?string $report_type * * @return $this */ @@ -489,7 +489,7 @@ public function getRunUri() /** * Sets run_uri * - * @param ?string $run_uri + * @param ?string $run_uri * * @return $this */ @@ -513,7 +513,7 @@ public function getSaveUri() /** * Sets save_uri * - * @param ?string $save_uri + * @param ?string $save_uri * * @return $this */ @@ -537,7 +537,7 @@ public function getScheduleCreateDate() /** * Sets schedule_create_date * - * @param ?string $schedule_create_date + * @param ?string $schedule_create_date * * @return $this */ @@ -561,7 +561,7 @@ public function getScheduleEndDate() /** * Sets schedule_end_date * - * @param ?string $schedule_end_date + * @param ?string $schedule_end_date * * @return $this */ @@ -585,7 +585,7 @@ public function getScheduleId() /** * Sets schedule_id * - * @param ?string $schedule_id + * @param ?string $schedule_id * * @return $this */ @@ -609,7 +609,7 @@ public function getScheduleRenewDurationDays() /** * Sets schedule_renew_duration_days * - * @param ?string $schedule_renew_duration_days + * @param ?string $schedule_renew_duration_days * * @return $this */ diff --git a/src/Model/ReportInProductRunRequest.php b/src/Model/ReportInProductRunRequest.php index 06bbc8ae..c95b6aa5 100644 --- a/src/Model/ReportInProductRunRequest.php +++ b/src/Model/ReportInProductRunRequest.php @@ -275,9 +275,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -292,7 +292,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication_success_filter'] = isset($data['authentication_success_filter']) ? $data['authentication_success_filter'] : null; $this->container['custom_field_filter'] = isset($data['custom_field_filter']) ? $data['custom_field_filter'] : null; @@ -357,7 +357,7 @@ public function getAuthenticationSuccessFilter() /** * Sets authentication_success_filter * - * @param ?string $authentication_success_filter + * @param ?string $authentication_success_filter * * @return $this */ @@ -381,7 +381,7 @@ public function getCustomFieldFilter() /** * Sets custom_field_filter * - * @param ?string $custom_field_filter + * @param ?string $custom_field_filter * * @return $this */ @@ -405,7 +405,7 @@ public function getDateRangeCustomFromDate() /** * Sets date_range_custom_from_date * - * @param ?string $date_range_custom_from_date + * @param ?string $date_range_custom_from_date * * @return $this */ @@ -429,7 +429,7 @@ public function getDateRangeCustomToDate() /** * Sets date_range_custom_to_date * - * @param ?string $date_range_custom_to_date + * @param ?string $date_range_custom_to_date * * @return $this */ @@ -453,7 +453,7 @@ public function getDateRangeFilter() /** * Sets date_range_filter * - * @param ?string $date_range_filter + * @param ?string $date_range_filter * * @return $this */ @@ -477,7 +477,7 @@ public function getEnvelopeDateTypeFilter() /** * Sets envelope_date_type_filter * - * @param ?string $envelope_date_type_filter + * @param ?string $envelope_date_type_filter * * @return $this */ @@ -501,7 +501,7 @@ public function getEnvelopeRecipientNameContainsFilter() /** * Sets envelope_recipient_name_contains_filter * - * @param ?string $envelope_recipient_name_contains_filter + * @param ?string $envelope_recipient_name_contains_filter * * @return $this */ @@ -525,7 +525,7 @@ public function getEnvelopeStatusFilter() /** * Sets envelope_status_filter * - * @param ?string $envelope_status_filter + * @param ?string $envelope_status_filter * * @return $this */ @@ -549,7 +549,7 @@ public function getEnvelopeSubjectContainsFilter() /** * Sets envelope_subject_contains_filter * - * @param ?string $envelope_subject_contains_filter + * @param ?string $envelope_subject_contains_filter * * @return $this */ @@ -573,7 +573,7 @@ public function getFields() /** * Sets fields * - * @param \DocuSign\eSign\Model\ReportInProductField[] $fields + * @param \DocuSign\eSign\Model\ReportInProductField[] $fields * * @return $this */ @@ -597,7 +597,7 @@ public function getForDownload() /** * Sets for_download * - * @param ?string $for_download + * @param ?string $for_download * * @return $this */ @@ -621,7 +621,7 @@ public function getIsDashboard() /** * Sets is_dashboard * - * @param ?string $is_dashboard + * @param ?string $is_dashboard * * @return $this */ @@ -645,7 +645,7 @@ public function getPeriodLengthFilter() /** * Sets period_length_filter * - * @param ?string $period_length_filter + * @param ?string $period_length_filter * * @return $this */ @@ -669,7 +669,7 @@ public function getReportCustomizedId() /** * Sets report_customized_id * - * @param ?string $report_customized_id + * @param ?string $report_customized_id * * @return $this */ @@ -693,7 +693,7 @@ public function getReportDescription() /** * Sets report_description * - * @param ?string $report_description + * @param ?string $report_description * * @return $this */ @@ -717,7 +717,7 @@ public function getReportId() /** * Sets report_id * - * @param ?string $report_id + * @param ?string $report_id * * @return $this */ @@ -741,7 +741,7 @@ public function getReportInvocationType() /** * Sets report_invocation_type * - * @param ?string $report_invocation_type + * @param ?string $report_invocation_type * * @return $this */ @@ -765,7 +765,7 @@ public function getReportName() /** * Sets report_name * - * @param ?string $report_name + * @param ?string $report_name * * @return $this */ @@ -789,7 +789,7 @@ public function getSentByFilter() /** * Sets sent_by_filter * - * @param ?string $sent_by_filter + * @param ?string $sent_by_filter * * @return $this */ @@ -813,7 +813,7 @@ public function getSentByIds() /** * Sets sent_by_ids * - * @param ?string $sent_by_ids + * @param ?string $sent_by_ids * * @return $this */ @@ -837,7 +837,7 @@ public function getSortDirection() /** * Sets sort_direction * - * @param ?string $sort_direction + * @param ?string $sort_direction * * @return $this */ @@ -861,7 +861,7 @@ public function getSortField() /** * Sets sort_field * - * @param ?string $sort_field + * @param ?string $sort_field * * @return $this */ @@ -909,7 +909,7 @@ public function getVerificationStatusFilter() /** * Sets verification_status_filter * - * @param ?string $verification_status_filter + * @param ?string $verification_status_filter * * @return $this */ diff --git a/src/Model/ReportInProductRunResponse.php b/src/Model/ReportInProductRunResponse.php index 6499cc1c..b16b5943 100644 --- a/src/Model/ReportInProductRunResponse.php +++ b/src/Model/ReportInProductRunResponse.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['exceeded_max_results'] = isset($data['exceeded_max_results']) ? $data['exceeded_max_results'] : null; @@ -279,7 +279,7 @@ public function getExceededMaxResults() /** * Sets exceeded_max_results * - * @param ?string $exceeded_max_results + * @param ?string $exceeded_max_results * * @return $this */ @@ -303,7 +303,7 @@ public function getLastWarehouseRefreshDateTime() /** * Sets last_warehouse_refresh_date_time * - * @param ?string $last_warehouse_refresh_date_time + * @param ?string $last_warehouse_refresh_date_time * * @return $this */ @@ -351,7 +351,7 @@ public function getRows() /** * Sets rows * - * @param \DocuSign\eSign\Model\ReportInProductRunResponseRow[] $rows + * @param \DocuSign\eSign\Model\ReportInProductRunResponseRow[] $rows * * @return $this */ diff --git a/src/Model/ReportInProductRunResponseRow.php b/src/Model/ReportInProductRunResponseRow.php index eca516bd..5eabde9e 100644 --- a/src/Model/ReportInProductRunResponseRow.php +++ b/src/Model/ReportInProductRunResponseRow.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['fields'] = isset($data['fields']) ? $data['fields'] : null; diff --git a/src/Model/ReportInProductRunResponseRowFields.php b/src/Model/ReportInProductRunResponseRowFields.php index c40b6605..82704fed 100644 --- a/src/Model/ReportInProductRunResponseRowFields.php +++ b/src/Model/ReportInProductRunResponseRowFields.php @@ -875,9 +875,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -892,7 +892,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code_required'] = isset($data['access_code_required']) ? $data['access_code_required'] : null; $this->container['access_codes_attempted'] = isset($data['access_codes_attempted']) ? $data['access_codes_attempted'] : null; @@ -1077,7 +1077,7 @@ public function getAccessCodeRequired() /** * Sets access_code_required * - * @param ?string $access_code_required + * @param ?string $access_code_required * * @return $this */ @@ -1101,7 +1101,7 @@ public function getAccessCodesAttempted() /** * Sets access_codes_attempted * - * @param ?string $access_codes_attempted + * @param ?string $access_codes_attempted * * @return $this */ @@ -1125,7 +1125,7 @@ public function getAccessCodesFailed() /** * Sets access_codes_failed * - * @param ?string $access_codes_failed + * @param ?string $access_codes_failed * * @return $this */ @@ -1173,7 +1173,7 @@ public function getAuthenticationCategory() /** * Sets authentication_category * - * @param ?string $authentication_category + * @param ?string $authentication_category * * @return $this */ @@ -1197,7 +1197,7 @@ public function getAuthenticationSuccess() /** * Sets authentication_success * - * @param ?string $authentication_success + * @param ?string $authentication_success * * @return $this */ @@ -1221,7 +1221,7 @@ public function getAuthenticationType() /** * Sets authentication_type * - * @param ?string $authentication_type + * @param ?string $authentication_type * * @return $this */ @@ -1245,7 +1245,7 @@ public function getAverageTimeToCompleteSeconds() /** * Sets average_time_to_complete_seconds * - * @param ?string $average_time_to_complete_seconds + * @param ?string $average_time_to_complete_seconds * * @return $this */ @@ -1269,7 +1269,7 @@ public function getAvgCompleteSeconds() /** * Sets avg_complete_seconds * - * @param ?string $avg_complete_seconds + * @param ?string $avg_complete_seconds * * @return $this */ @@ -1293,7 +1293,7 @@ public function getCaptureMethod() /** * Sets capture_method * - * @param ?string $capture_method + * @param ?string $capture_method * * @return $this */ @@ -1317,7 +1317,7 @@ public function getCompleted() /** * Sets completed * - * @param ?string $completed + * @param ?string $completed * * @return $this */ @@ -1341,7 +1341,7 @@ public function getCompletedTs() /** * Sets completed_ts * - * @param ?string $completed_ts + * @param ?string $completed_ts * * @return $this */ @@ -1365,7 +1365,7 @@ public function getCreatedDate() /** * Sets created_date * - * @param ?string $created_date + * @param ?string $created_date * * @return $this */ @@ -1389,7 +1389,7 @@ public function getCreatedOn() /** * Sets created_on * - * @param ?string $created_on + * @param ?string $created_on * * @return $this */ @@ -1413,7 +1413,7 @@ public function getCreator() /** * Sets creator * - * @param ?string $creator + * @param ?string $creator * * @return $this */ @@ -1437,7 +1437,7 @@ public function getCustomField() /** * Sets custom_field * - * @param ?string $custom_field + * @param ?string $custom_field * * @return $this */ @@ -1461,7 +1461,7 @@ public function getDeclinedDate() /** * Sets declined_date * - * @param ?string $declined_date + * @param ?string $declined_date * * @return $this */ @@ -1509,7 +1509,7 @@ public function getDeliveredDate() /** * Sets delivered_date * - * @param ?string $delivered_date + * @param ?string $delivered_date * * @return $this */ @@ -1533,7 +1533,7 @@ public function getEnvelopeCount() /** * Sets envelope_count * - * @param ?string $envelope_count + * @param ?string $envelope_count * * @return $this */ @@ -1557,7 +1557,7 @@ public function getEnvelopeCreator() /** * Sets envelope_creator * - * @param ?string $envelope_creator + * @param ?string $envelope_creator * * @return $this */ @@ -1605,7 +1605,7 @@ public function getEnvelopeInitialSendTs() /** * Sets envelope_initial_send_ts * - * @param ?string $envelope_initial_send_ts + * @param ?string $envelope_initial_send_ts * * @return $this */ @@ -1629,7 +1629,7 @@ public function getEnvelopesBilled() /** * Sets envelopes_billed * - * @param ?string $envelopes_billed + * @param ?string $envelopes_billed * * @return $this */ @@ -1653,7 +1653,7 @@ public function getEnvelopesCompleted() /** * Sets envelopes_completed * - * @param ?string $envelopes_completed + * @param ?string $envelopes_completed * * @return $this */ @@ -1677,7 +1677,7 @@ public function getEnvelopesCompletedCount() /** * Sets envelopes_completed_count * - * @param ?string $envelopes_completed_count + * @param ?string $envelopes_completed_count * * @return $this */ @@ -1701,7 +1701,7 @@ public function getEnvelopesDeclined() /** * Sets envelopes_declined * - * @param ?string $envelopes_declined + * @param ?string $envelopes_declined * * @return $this */ @@ -1725,7 +1725,7 @@ public function getEnvelopesSent() /** * Sets envelopes_sent * - * @param ?string $envelopes_sent + * @param ?string $envelopes_sent * * @return $this */ @@ -1749,7 +1749,7 @@ public function getEnvelopesSentCount() /** * Sets envelopes_sent_count * - * @param ?string $envelopes_sent_count + * @param ?string $envelopes_sent_count * * @return $this */ @@ -1773,7 +1773,7 @@ public function getEnvelopesVoided() /** * Sets envelopes_voided * - * @param ?string $envelopes_voided + * @param ?string $envelopes_voided * * @return $this */ @@ -1797,7 +1797,7 @@ public function getEnvelopeVoidedReason() /** * Sets envelope_voided_reason * - * @param ?string $envelope_voided_reason + * @param ?string $envelope_voided_reason * * @return $this */ @@ -1821,7 +1821,7 @@ public function getEodDocumentDescription() /** * Sets eod_document_description * - * @param ?string $eod_document_description + * @param ?string $eod_document_description * * @return $this */ @@ -1845,7 +1845,7 @@ public function getEodDocumentName() /** * Sets eod_document_name * - * @param ?string $eod_document_name + * @param ?string $eod_document_name * * @return $this */ @@ -1869,7 +1869,7 @@ public function getEodDocumentProfileId() /** * Sets eod_document_profile_id * - * @param ?string $eod_document_profile_id + * @param ?string $eod_document_profile_id * * @return $this */ @@ -1893,7 +1893,7 @@ public function getEodTransactionId() /** * Sets eod_transaction_id * - * @param ?string $eod_transaction_id + * @param ?string $eod_transaction_id * * @return $this */ @@ -1917,7 +1917,7 @@ public function getEodTransactionName() /** * Sets eod_transaction_name * - * @param ?string $eod_transaction_name + * @param ?string $eod_transaction_name * * @return $this */ @@ -1941,7 +1941,7 @@ public function getEventDate() /** * Sets event_date * - * @param ?string $event_date + * @param ?string $event_date * * @return $this */ @@ -1965,7 +1965,7 @@ public function getExpirationDate() /** * Sets expiration_date * - * @param ?string $expiration_date + * @param ?string $expiration_date * * @return $this */ @@ -1989,7 +1989,7 @@ public function getExpiredTs() /** * Sets expired_ts * - * @param ?string $expired_ts + * @param ?string $expired_ts * * @return $this */ @@ -2013,7 +2013,7 @@ public function getFailureReason() /** * Sets failure_reason * - * @param ?string $failure_reason + * @param ?string $failure_reason * * @return $this */ @@ -2037,7 +2037,7 @@ public function getFailures() /** * Sets failures * - * @param ?string $failures + * @param ?string $failures * * @return $this */ @@ -2061,7 +2061,7 @@ public function getFailureVendorCode() /** * Sets failure_vendor_code * - * @param ?string $failure_vendor_code + * @param ?string $failure_vendor_code * * @return $this */ @@ -2085,7 +2085,7 @@ public function getFailureVendorReason() /** * Sets failure_vendor_reason * - * @param ?string $failure_vendor_reason + * @param ?string $failure_vendor_reason * * @return $this */ @@ -2109,7 +2109,7 @@ public function getFirstSendTs() /** * Sets first_send_ts * - * @param ?string $first_send_ts + * @param ?string $first_send_ts * * @return $this */ @@ -2133,7 +2133,7 @@ public function getGroupId() /** * Sets group_id * - * @param ?string $group_id + * @param ?string $group_id * * @return $this */ @@ -2181,7 +2181,7 @@ public function getHoursToCompleteEnd() /** * Sets hours_to_complete_end * - * @param ?string $hours_to_complete_end + * @param ?string $hours_to_complete_end * * @return $this */ @@ -2205,7 +2205,7 @@ public function getHoursToCompleteStart() /** * Sets hours_to_complete_start * - * @param ?string $hours_to_complete_start + * @param ?string $hours_to_complete_start * * @return $this */ @@ -2229,7 +2229,7 @@ public function getIdChecksAttempted() /** * Sets id_checks_attempted * - * @param ?string $id_checks_attempted + * @param ?string $id_checks_attempted * * @return $this */ @@ -2253,7 +2253,7 @@ public function getIdChecksFailed() /** * Sets id_checks_failed * - * @param ?string $id_checks_failed + * @param ?string $id_checks_failed * * @return $this */ @@ -2277,7 +2277,7 @@ public function getIdCountry() /** * Sets id_country * - * @param ?string $id_country + * @param ?string $id_country * * @return $this */ @@ -2301,7 +2301,7 @@ public function getIdMethod() /** * Sets id_method * - * @param ?string $id_method + * @param ?string $id_method * * @return $this */ @@ -2325,7 +2325,7 @@ public function getInitialSendTs() /** * Sets initial_send_ts * - * @param ?string $initial_send_ts + * @param ?string $initial_send_ts * * @return $this */ @@ -2349,7 +2349,7 @@ public function getIpAddress() /** * Sets ip_address * - * @param ?string $ip_address + * @param ?string $ip_address * * @return $this */ @@ -2373,7 +2373,7 @@ public function getLastActivity() /** * Sets last_activity * - * @param ?string $last_activity + * @param ?string $last_activity * * @return $this */ @@ -2397,7 +2397,7 @@ public function getLastActivityDate() /** * Sets last_activity_date * - * @param ?string $last_activity_date + * @param ?string $last_activity_date * * @return $this */ @@ -2421,7 +2421,7 @@ public function getLastModified() /** * Sets last_modified * - * @param ?string $last_modified + * @param ?string $last_modified * * @return $this */ @@ -2445,7 +2445,7 @@ public function getLastSentDate() /** * Sets last_sent_date * - * @param ?string $last_sent_date + * @param ?string $last_sent_date * * @return $this */ @@ -2469,7 +2469,7 @@ public function getLastUsed() /** * Sets last_used * - * @param ?string $last_used + * @param ?string $last_used * * @return $this */ @@ -2493,7 +2493,7 @@ public function getMetadataRemoved() /** * Sets metadata_removed * - * @param ?string $metadata_removed + * @param ?string $metadata_removed * * @return $this */ @@ -2517,7 +2517,7 @@ public function getNotSigned() /** * Sets not_signed * - * @param ?string $not_signed + * @param ?string $not_signed * * @return $this */ @@ -2541,7 +2541,7 @@ public function getNumberOfAuthenticatedRecipients() /** * Sets number_of_authenticated_recipients * - * @param ?string $number_of_authenticated_recipients + * @param ?string $number_of_authenticated_recipients * * @return $this */ @@ -2565,7 +2565,7 @@ public function getNumberOfCompletedSignatures() /** * Sets number_of_completed_signatures * - * @param ?string $number_of_completed_signatures + * @param ?string $number_of_completed_signatures * * @return $this */ @@ -2589,7 +2589,7 @@ public function getNumberOfDocuments() /** * Sets number_of_documents * - * @param ?string $number_of_documents + * @param ?string $number_of_documents * * @return $this */ @@ -2613,7 +2613,7 @@ public function getNumberOfPages() /** * Sets number_of_pages * - * @param ?string $number_of_pages + * @param ?string $number_of_pages * * @return $this */ @@ -2637,7 +2637,7 @@ public function getNumberOfRecipients() /** * Sets number_of_recipients * - * @param ?string $number_of_recipients + * @param ?string $number_of_recipients * * @return $this */ @@ -2661,7 +2661,7 @@ public function getNumberOfSends() /** * Sets number_of_sends * - * @param ?string $number_of_sends + * @param ?string $number_of_sends * * @return $this */ @@ -2685,7 +2685,7 @@ public function getNumberOfSigners() /** * Sets number_of_signers * - * @param ?string $number_of_signers + * @param ?string $number_of_signers * * @return $this */ @@ -2709,7 +2709,7 @@ public function getNumberOfTotalDocuments() /** * Sets number_of_total_documents * - * @param ?string $number_of_total_documents + * @param ?string $number_of_total_documents * * @return $this */ @@ -2733,7 +2733,7 @@ public function getNumberOfTotalPages() /** * Sets number_of_total_pages * - * @param ?string $number_of_total_pages + * @param ?string $number_of_total_pages * * @return $this */ @@ -2757,7 +2757,7 @@ public function getNumberOfTotalSigners() /** * Sets number_of_total_signers * - * @param ?string $number_of_total_signers + * @param ?string $number_of_total_signers * * @return $this */ @@ -2781,7 +2781,7 @@ public function getNumberOfUniqueSenders() /** * Sets number_of_unique_senders * - * @param ?string $number_of_unique_senders + * @param ?string $number_of_unique_senders * * @return $this */ @@ -2805,7 +2805,7 @@ public function getNumberTotalRecipients() /** * Sets number_total_recipients * - * @param ?string $number_total_recipients + * @param ?string $number_total_recipients * * @return $this */ @@ -2829,7 +2829,7 @@ public function getOtherRecipientsList() /** * Sets other_recipients_list * - * @param ?string $other_recipients_list + * @param ?string $other_recipients_list * * @return $this */ @@ -2853,7 +2853,7 @@ public function getOwner() /** * Sets owner * - * @param ?string $owner + * @param ?string $owner * * @return $this */ @@ -2877,7 +2877,7 @@ public function getOwnerMail() /** * Sets owner_mail * - * @param ?string $owner_mail + * @param ?string $owner_mail * * @return $this */ @@ -2901,7 +2901,7 @@ public function getPeriodEnd() /** * Sets period_end * - * @param ?string $period_end + * @param ?string $period_end * * @return $this */ @@ -2925,7 +2925,7 @@ public function getPeriodStart() /** * Sets period_start * - * @param ?string $period_start + * @param ?string $period_start * * @return $this */ @@ -2949,7 +2949,7 @@ public function getPhoneCallsAttempted() /** * Sets phone_calls_attempted * - * @param ?string $phone_calls_attempted + * @param ?string $phone_calls_attempted * * @return $this */ @@ -2973,7 +2973,7 @@ public function getPhoneCallsFailed() /** * Sets phone_calls_failed * - * @param ?string $phone_calls_failed + * @param ?string $phone_calls_failed * * @return $this */ @@ -2997,7 +2997,7 @@ public function getPiiRedacted() /** * Sets pii_redacted * - * @param ?string $pii_redacted + * @param ?string $pii_redacted * * @return $this */ @@ -3021,7 +3021,7 @@ public function getPurgeDate() /** * Sets purge_date * - * @param ?string $purge_date + * @param ?string $purge_date * * @return $this */ @@ -3045,7 +3045,7 @@ public function getReasonForDeclining() /** * Sets reason_for_declining * - * @param ?string $reason_for_declining + * @param ?string $reason_for_declining * * @return $this */ @@ -3069,7 +3069,7 @@ public function getReasonForVoiding() /** * Sets reason_for_voiding * - * @param ?string $reason_for_voiding + * @param ?string $reason_for_voiding * * @return $this */ @@ -3093,7 +3093,7 @@ public function getReassignReason() /** * Sets reassign_reason * - * @param ?string $reassign_reason + * @param ?string $reassign_reason * * @return $this */ @@ -3117,7 +3117,7 @@ public function getReceived() /** * Sets received * - * @param ?string $received + * @param ?string $received * * @return $this */ @@ -3141,7 +3141,7 @@ public function getRecipient() /** * Sets recipient * - * @param ?string $recipient + * @param ?string $recipient * * @return $this */ @@ -3165,7 +3165,7 @@ public function getRecipientAction() /** * Sets recipient_action * - * @param ?string $recipient_action + * @param ?string $recipient_action * * @return $this */ @@ -3189,7 +3189,7 @@ public function getRecipientCompanyName() /** * Sets recipient_company_name * - * @param ?string $recipient_company_name + * @param ?string $recipient_company_name * * @return $this */ @@ -3213,7 +3213,7 @@ public function getRecipientCountry() /** * Sets recipient_country * - * @param ?string $recipient_country + * @param ?string $recipient_country * * @return $this */ @@ -3237,7 +3237,7 @@ public function getRecipientEmail() /** * Sets recipient_email * - * @param ?string $recipient_email + * @param ?string $recipient_email * * @return $this */ @@ -3285,7 +3285,7 @@ public function getRecipientName() /** * Sets recipient_name * - * @param ?string $recipient_name + * @param ?string $recipient_name * * @return $this */ @@ -3309,7 +3309,7 @@ public function getRecipientRoleName() /** * Sets recipient_role_name * - * @param ?string $recipient_role_name + * @param ?string $recipient_role_name * * @return $this */ @@ -3333,7 +3333,7 @@ public function getRecipientTemplateRoleName() /** * Sets recipient_template_role_name * - * @param ?string $recipient_template_role_name + * @param ?string $recipient_template_role_name * * @return $this */ @@ -3357,7 +3357,7 @@ public function getRecipientTitle() /** * Sets recipient_title * - * @param ?string $recipient_title + * @param ?string $recipient_title * * @return $this */ @@ -3381,7 +3381,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -3405,7 +3405,7 @@ public function getRecipientUserId() /** * Sets recipient_user_id * - * @param ?string $recipient_user_id + * @param ?string $recipient_user_id * * @return $this */ @@ -3429,7 +3429,7 @@ public function getRemainingSignatures() /** * Sets remaining_signatures * - * @param ?string $remaining_signatures + * @param ?string $remaining_signatures * * @return $this */ @@ -3477,7 +3477,7 @@ public function getSenderAccountId() /** * Sets sender_account_id * - * @param ?string $sender_account_id + * @param ?string $sender_account_id * * @return $this */ @@ -3501,7 +3501,7 @@ public function getSenderCompanyName() /** * Sets sender_company_name * - * @param ?string $sender_company_name + * @param ?string $sender_company_name * * @return $this */ @@ -3525,7 +3525,7 @@ public function getSenderCountry() /** * Sets sender_country * - * @param ?string $sender_country + * @param ?string $sender_country * * @return $this */ @@ -3549,7 +3549,7 @@ public function getSenderEmail() /** * Sets sender_email * - * @param ?string $sender_email + * @param ?string $sender_email * * @return $this */ @@ -3573,7 +3573,7 @@ public function getSenderIpAddress() /** * Sets sender_ip_address * - * @param ?string $sender_ip_address + * @param ?string $sender_ip_address * * @return $this */ @@ -3597,7 +3597,7 @@ public function getSenderJobTitle() /** * Sets sender_job_title * - * @param ?string $sender_job_title + * @param ?string $sender_job_title * * @return $this */ @@ -3621,7 +3621,7 @@ public function getSenderName() /** * Sets sender_name * - * @param ?string $sender_name + * @param ?string $sender_name * * @return $this */ @@ -3645,7 +3645,7 @@ public function getSenderUserId() /** * Sets sender_user_id * - * @param ?string $sender_user_id + * @param ?string $sender_user_id * * @return $this */ @@ -3669,7 +3669,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -3693,7 +3693,7 @@ public function getSignatureTypeValue() /** * Sets signature_type_value * - * @param ?string $signature_type_value + * @param ?string $signature_type_value * * @return $this */ @@ -3717,7 +3717,7 @@ public function getSignDate() /** * Sets sign_date * - * @param ?string $sign_date + * @param ?string $sign_date * * @return $this */ @@ -3741,7 +3741,7 @@ public function getSigned() /** * Sets signed * - * @param ?string $signed + * @param ?string $signed * * @return $this */ @@ -3765,7 +3765,7 @@ public function getSignedDate() /** * Sets signed_date * - * @param ?string $signed_date + * @param ?string $signed_date * * @return $this */ @@ -3789,7 +3789,7 @@ public function getSignedOnMobile() /** * Sets signed_on_mobile * - * @param ?string $signed_on_mobile + * @param ?string $signed_on_mobile * * @return $this */ @@ -3813,7 +3813,7 @@ public function getSignedOnPaper() /** * Sets signed_on_paper * - * @param ?string $signed_on_paper + * @param ?string $signed_on_paper * * @return $this */ @@ -3837,7 +3837,7 @@ public function getSignerList() /** * Sets signer_list * - * @param ?string $signer_list + * @param ?string $signer_list * * @return $this */ @@ -3885,7 +3885,7 @@ public function getStatusChangedDate() /** * Sets status_changed_date * - * @param ?string $status_changed_date + * @param ?string $status_changed_date * * @return $this */ @@ -3909,7 +3909,7 @@ public function getStatusChangedTs() /** * Sets status_changed_ts * - * @param ?string $status_changed_ts + * @param ?string $status_changed_ts * * @return $this */ @@ -3933,7 +3933,7 @@ public function getStatusComment() /** * Sets status_comment * - * @param ?string $status_comment + * @param ?string $status_comment * * @return $this */ @@ -3957,7 +3957,7 @@ public function getSubject() /** * Sets subject * - * @param ?string $subject + * @param ?string $subject * * @return $this */ @@ -3981,7 +3981,7 @@ public function getSuccesses() /** * Sets successes * - * @param ?string $successes + * @param ?string $successes * * @return $this */ @@ -4029,7 +4029,7 @@ public function getTemplateName() /** * Sets template_name * - * @param ?string $template_name + * @param ?string $template_name * * @return $this */ @@ -4053,7 +4053,7 @@ public function getTemplatesCreated() /** * Sets templates_created * - * @param ?string $templates_created + * @param ?string $templates_created * * @return $this */ @@ -4077,7 +4077,7 @@ public function getTemplatesCreatedCount() /** * Sets templates_created_count * - * @param ?string $templates_created_count + * @param ?string $templates_created_count * * @return $this */ @@ -4101,7 +4101,7 @@ public function getTerminalStatusDate() /** * Sets terminal_status_date * - * @param ?string $terminal_status_date + * @param ?string $terminal_status_date * * @return $this */ @@ -4125,7 +4125,7 @@ public function getTimeToCompleteSeconds() /** * Sets time_to_complete_seconds * - * @param ?string $time_to_complete_seconds + * @param ?string $time_to_complete_seconds * * @return $this */ @@ -4149,7 +4149,7 @@ public function getTimeToDeliver() /** * Sets time_to_deliver * - * @param ?string $time_to_deliver + * @param ?string $time_to_deliver * * @return $this */ @@ -4173,7 +4173,7 @@ public function getTotalDocuments() /** * Sets total_documents * - * @param ?string $total_documents + * @param ?string $total_documents * * @return $this */ @@ -4197,7 +4197,7 @@ public function getTotalEnvelopes() /** * Sets total_envelopes * - * @param ?string $total_envelopes + * @param ?string $total_envelopes * * @return $this */ @@ -4221,7 +4221,7 @@ public function getTotalPages() /** * Sets total_pages * - * @param ?string $total_pages + * @param ?string $total_pages * * @return $this */ @@ -4245,7 +4245,7 @@ public function getTotalRecipients() /** * Sets total_recipients * - * @param ?string $total_recipients + * @param ?string $total_recipients * * @return $this */ @@ -4269,7 +4269,7 @@ public function getTotalSigners() /** * Sets total_signers * - * @param ?string $total_signers + * @param ?string $total_signers * * @return $this */ @@ -4293,7 +4293,7 @@ public function getUniqueSenders() /** * Sets unique_senders * - * @param ?string $unique_senders + * @param ?string $unique_senders * * @return $this */ @@ -4317,7 +4317,7 @@ public function getUserAccountEmail() /** * Sets user_account_email * - * @param ?string $user_account_email + * @param ?string $user_account_email * * @return $this */ @@ -4341,7 +4341,7 @@ public function getUserAccountName() /** * Sets user_account_name * - * @param ?string $user_account_name + * @param ?string $user_account_name * * @return $this */ @@ -4365,7 +4365,7 @@ public function getUserAccountStatus() /** * Sets user_account_status * - * @param ?string $user_account_status + * @param ?string $user_account_status * * @return $this */ @@ -4389,7 +4389,7 @@ public function getUserCount() /** * Sets user_count * - * @param ?string $user_count + * @param ?string $user_count * * @return $this */ @@ -4413,7 +4413,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -4437,7 +4437,7 @@ public function getVerificationStatus() /** * Sets verification_status * - * @param ?string $verification_status + * @param ?string $verification_status * * @return $this */ @@ -4461,7 +4461,7 @@ public function getVerificationType() /** * Sets verification_type * - * @param ?string $verification_type + * @param ?string $verification_type * * @return $this */ @@ -4485,7 +4485,7 @@ public function getViewDate() /** * Sets view_date * - * @param ?string $view_date + * @param ?string $view_date * * @return $this */ @@ -4509,7 +4509,7 @@ public function getVoidedTs() /** * Sets voided_ts * - * @param ?string $voided_ts + * @param ?string $voided_ts * * @return $this */ diff --git a/src/Model/ReportInProductSaveResponse.php b/src/Model/ReportInProductSaveResponse.php index d7e46da2..ad317aa3 100644 --- a/src/Model/ReportInProductSaveResponse.php +++ b/src/Model/ReportInProductSaveResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['report_customized_id'] = isset($data['report_customized_id']) ? $data['report_customized_id'] : null; } @@ -219,7 +219,7 @@ public function getReportCustomizedId() /** * Sets report_customized_id * - * @param ?string $report_customized_id + * @param ?string $report_customized_id * * @return $this */ diff --git a/src/Model/ReportInProductSentByDetails.php b/src/Model/ReportInProductSentByDetails.php index 4ce22493..5c3affc0 100644 --- a/src/Model/ReportInProductSentByDetails.php +++ b/src/Model/ReportInProductSentByDetails.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['groups'] = isset($data['groups']) ? $data['groups'] : null; $this->container['users'] = isset($data['users']) ? $data['users'] : null; @@ -249,7 +249,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInfo[] $users + * @param \DocuSign\eSign\Model\UserInfo[] $users * * @return $this */ diff --git a/src/Model/ReservedDomainExistence.php b/src/Model/ReservedDomainExistence.php index d1749e50..ba04146e 100644 --- a/src/Model/ReservedDomainExistence.php +++ b/src/Model/ReservedDomainExistence.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email_domain'] = isset($data['email_domain']) ? $data['email_domain'] : null; $this->container['is_reserved'] = isset($data['is_reserved']) ? $data['is_reserved'] : null; @@ -225,7 +225,7 @@ public function getEmailDomain() /** * Sets email_domain * - * @param ?string $email_domain + * @param ?string $email_domain * * @return $this */ @@ -249,7 +249,7 @@ public function getIsReserved() /** * Sets is_reserved * - * @param ?string $is_reserved + * @param ?string $is_reserved * * @return $this */ diff --git a/src/Model/ResourceInformation.php b/src/Model/ResourceInformation.php index 79f5f338..de4b8719 100644 --- a/src/Model/ResourceInformation.php +++ b/src/Model/ResourceInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['resources'] = isset($data['resources']) ? $data['resources'] : null; } @@ -219,7 +219,7 @@ public function getResources() /** * Sets resources * - * @param \DocuSign\eSign\Model\NameValue[] $resources + * @param \DocuSign\eSign\Model\NameValue[] $resources * * @return $this */ diff --git a/src/Model/ReturnUrlRequest.php b/src/Model/ReturnUrlRequest.php index f80a9457..0b5ec902 100644 --- a/src/Model/ReturnUrlRequest.php +++ b/src/Model/ReturnUrlRequest.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null; } diff --git a/src/Model/Revision.php b/src/Model/Revision.php index 644119b5..46975043 100644 --- a/src/Model/Revision.php +++ b/src/Model/Revision.php @@ -183,9 +183,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_data'] = isset($data['end_data']) ? $data['end_data'] : null; $this->container['field_name'] = isset($data['field_name']) ? $data['field_name'] : null; @@ -247,7 +247,7 @@ public function getEndData() /** * Sets end_data * - * @param ?string $end_data + * @param ?string $end_data * * @return $this */ @@ -271,7 +271,7 @@ public function getFieldName() /** * Sets field_name * - * @param ?string $field_name + * @param ?string $field_name * * @return $this */ @@ -295,7 +295,7 @@ public function getMaxSignatureLength() /** * Sets max_signature_length * - * @param ?string $max_signature_length + * @param ?string $max_signature_length * * @return $this */ @@ -343,7 +343,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -367,7 +367,7 @@ public function getStartData() /** * Sets start_data * - * @param ?string $start_data + * @param ?string $start_data * * @return $this */ diff --git a/src/Model/SamlAssertionAttribute.php b/src/Model/SamlAssertionAttribute.php index 675288b9..b9afe071 100644 --- a/src/Model/SamlAssertionAttribute.php +++ b/src/Model/SamlAssertionAttribute.php @@ -115,9 +115,9 @@ public static function getters() return self::$getters; } - - + + /** * Associative array for storing property values @@ -129,7 +129,7 @@ public static function getters() * Constructor * @param mixed[] $data Associated array of property values initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -192,7 +192,7 @@ public function getName() /** * Sets name - * @param string $name + * @param string $name * @return $this */ public function setName($name) diff --git a/src/Model/ScheduledSending.php b/src/Model/ScheduledSending.php index 3664fd5d..f7cbea2d 100644 --- a/src/Model/ScheduledSending.php +++ b/src/Model/ScheduledSending.php @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_list_id'] = isset($data['bulk_list_id']) ? $data['bulk_list_id'] : null; $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; diff --git a/src/Model/ScheduledSendingApiModel.php b/src/Model/ScheduledSendingApiModel.php index 15c5631c..c225ff0d 100644 --- a/src/Model/ScheduledSendingApiModel.php +++ b/src/Model/ScheduledSendingApiModel.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['resume_date'] = isset($data['resume_date']) ? $data['resume_date'] : null; $this->container['rules'] = isset($data['rules']) ? $data['rules'] : null; diff --git a/src/Model/Seal.php b/src/Model/Seal.php index 8bfcdbe0..23c06c1c 100644 --- a/src/Model/Seal.php +++ b/src/Model/Seal.php @@ -163,9 +163,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configuration'] = isset($data['configuration']) ? $data['configuration'] : null; $this->container['seal_identifier'] = isset($data['seal_identifier']) ? $data['seal_identifier'] : null; @@ -223,7 +223,7 @@ public function getConfiguration() /** * Sets configuration * - * @param map[string,?string] $configuration + * @param map[string,?string] $configuration * * @return $this */ @@ -247,7 +247,7 @@ public function getSealIdentifier() /** * Sets seal_identifier * - * @param ?string $seal_identifier + * @param ?string $seal_identifier * * @return $this */ diff --git a/src/Model/SealIdentifier.php b/src/Model/SealIdentifier.php index e25ad1a5..3df1c754 100644 --- a/src/Model/SealIdentifier.php +++ b/src/Model/SealIdentifier.php @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['seal_display_name'] = isset($data['seal_display_name']) ? $data['seal_display_name'] : null; $this->container['seal_name'] = isset($data['seal_name']) ? $data['seal_name'] : null; diff --git a/src/Model/SealSign.php b/src/Model/SealSign.php index ae894ae9..e7c75c5d 100644 --- a/src/Model/SealSign.php +++ b/src/Model/SealSign.php @@ -461,9 +461,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -478,7 +478,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -652,7 +652,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -676,7 +676,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -700,7 +700,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -748,7 +748,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -916,7 +916,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -940,7 +940,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -964,7 +964,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -988,7 +988,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1252,7 +1252,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -1276,7 +1276,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -1300,7 +1300,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1396,7 +1396,7 @@ public function getProofFile() /** * Sets proof_file * - * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file + * @param \DocuSign\eSign\Model\RecipientProofFile $proof_file * * @return $this */ @@ -1468,7 +1468,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -1516,7 +1516,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -1540,7 +1540,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -1564,7 +1564,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -1852,7 +1852,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -1876,7 +1876,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -1972,7 +1972,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -1996,7 +1996,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -2020,7 +2020,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/SeatDiscount.php b/src/Model/SeatDiscount.php index 3eda7c7e..05a300c7 100644 --- a/src/Model/SeatDiscount.php +++ b/src/Model/SeatDiscount.php @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['begin_seat_count'] = isset($data['begin_seat_count']) ? $data['begin_seat_count'] : null; $this->container['discount_percent'] = isset($data['discount_percent']) ? $data['discount_percent'] : null; diff --git a/src/Model/Sender.php b/src/Model/Sender.php index 97d37531..39f648eb 100644 --- a/src/Model/Sender.php +++ b/src/Model/Sender.php @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id_guid'] = isset($data['account_id_guid']) ? $data['account_id_guid'] : null; $this->container['company_name'] = isset($data['company_name']) ? $data['company_name'] : null; diff --git a/src/Model/SenderCompany.php b/src/Model/SenderCompany.php index 4b03ac28..8e081f76 100644 --- a/src/Model/SenderCompany.php +++ b/src/Model/SenderCompany.php @@ -652,7 +652,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/SenderEmailNotifications.php b/src/Model/SenderEmailNotifications.php index 6b64411f..f1ede692 100644 --- a/src/Model/SenderEmailNotifications.php +++ b/src/Model/SenderEmailNotifications.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['changed_signer'] = isset($data['changed_signer']) ? $data['changed_signer'] : null; $this->container['clickwrap_responses_limit_notification_email'] = isset($data['clickwrap_responses_limit_notification_email']) ? $data['clickwrap_responses_limit_notification_email'] : null; @@ -310,7 +310,7 @@ public function getClickwrapResponsesLimitNotificationEmail() /** * Sets clickwrap_responses_limit_notification_email * - * @param ?string $clickwrap_responses_limit_notification_email + * @param ?string $clickwrap_responses_limit_notification_email * * @return $this */ @@ -334,7 +334,7 @@ public function getCommentsOnlyPrivateAndMention() /** * Sets comments_only_private_and_mention * - * @param ?string $comments_only_private_and_mention + * @param ?string $comments_only_private_and_mention * * @return $this */ @@ -358,7 +358,7 @@ public function getCommentsReceiveAll() /** * Sets comments_receive_all * - * @param ?string $comments_receive_all + * @param ?string $comments_receive_all * * @return $this */ @@ -454,7 +454,7 @@ public function getPowerformResponsesLimitNotificationEmail() /** * Sets powerform_responses_limit_notification_email * - * @param ?string $powerform_responses_limit_notification_email + * @param ?string $powerform_responses_limit_notification_email * * @return $this */ @@ -478,7 +478,7 @@ public function getPurgeDocuments() /** * Sets purge_documents * - * @param ?string $purge_documents + * @param ?string $purge_documents * * @return $this */ @@ -526,7 +526,7 @@ public function getSenderEnvelopeDeclined() /** * Sets sender_envelope_declined * - * @param ?string $sender_envelope_declined + * @param ?string $sender_envelope_declined * * @return $this */ diff --git a/src/Model/SenderName.php b/src/Model/SenderName.php index 5d8ca0cf..cad77bc4 100644 --- a/src/Model/SenderName.php +++ b/src/Model/SenderName.php @@ -635,9 +635,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -652,7 +652,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -789,7 +789,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -813,7 +813,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -837,7 +837,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1125,7 +1125,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1365,7 +1365,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1389,7 +1389,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1509,7 +1509,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1653,7 +1653,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1821,7 +1821,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1869,7 +1869,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1917,7 +1917,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2109,7 +2109,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2133,7 +2133,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2253,7 +2253,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2349,7 +2349,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2421,7 +2421,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2445,7 +2445,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2589,7 +2589,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2637,7 +2637,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2781,7 +2781,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2925,7 +2925,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/ServerTemplate.php b/src/Model/ServerTemplate.php index 36468af9..8dfc3e48 100644 --- a/src/Model/ServerTemplate.php +++ b/src/Model/ServerTemplate.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sequence'] = isset($data['sequence']) ? $data['sequence'] : null; $this->container['template_id'] = isset($data['template_id']) ? $data['template_id'] : null; @@ -225,7 +225,7 @@ public function getSequence() /** * Sets sequence * - * @param ?string $sequence + * @param ?string $sequence * * @return $this */ diff --git a/src/Model/ServiceInformation.php b/src/Model/ServiceInformation.php index 716a574f..a60be35c 100644 --- a/src/Model/ServiceInformation.php +++ b/src/Model/ServiceInformation.php @@ -185,9 +185,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -202,7 +202,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['build_branch'] = isset($data['build_branch']) ? $data['build_branch'] : null; $this->container['build_branch_deployed_date_time'] = isset($data['build_branch_deployed_date_time']) ? $data['build_branch_deployed_date_time'] : null; @@ -345,7 +345,7 @@ public function getLinkedSites() /** * Sets linked_sites * - * @param ?string[] $linked_sites + * @param ?string[] $linked_sites * * @return $this */ @@ -369,7 +369,7 @@ public function getServiceVersions() /** * Sets service_versions * - * @param \DocuSign\eSign\Model\ServiceVersion[] $service_versions + * @param \DocuSign\eSign\Model\ServiceVersion[] $service_versions * * @return $this */ diff --git a/src/Model/ServiceVersion.php b/src/Model/ServiceVersion.php index a8d39078..923cd857 100644 --- a/src/Model/ServiceVersion.php +++ b/src/Model/ServiceVersion.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['version'] = isset($data['version']) ? $data['version'] : null; $this->container['version_url'] = isset($data['version_url']) ? $data['version_url'] : null; @@ -249,7 +249,7 @@ public function getVersionUrl() /** * Sets version_url * - * @param ?string $version_url + * @param ?string $version_url * * @return $this */ diff --git a/src/Model/SettingsMetadata.php b/src/Model/SettingsMetadata.php index 3863c0ec..5cb50a1f 100644 --- a/src/Model/SettingsMetadata.php +++ b/src/Model/SettingsMetadata.php @@ -186,9 +186,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is21_cfr_part11'] = isset($data['is21_cfr_part11']) ? $data['is21_cfr_part11'] : null; $this->container['options'] = isset($data['options']) ? $data['options'] : null; @@ -274,7 +274,7 @@ public function getOptions() /** * Sets options * - * @param ?string[] $options + * @param ?string[] $options * * @return $this */ @@ -298,7 +298,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ @@ -322,7 +322,7 @@ public function getUiHint() /** * Sets ui_hint * - * @param ?string $ui_hint + * @param ?string $ui_hint * * @return $this */ @@ -346,7 +346,7 @@ public function getUiOrder() /** * Sets ui_order * - * @param ?string $ui_order + * @param ?string $ui_order * * @return $this */ @@ -370,7 +370,7 @@ public function getUiType() /** * Sets ui_type * - * @param ?string $ui_type + * @param ?string $ui_type * * @return $this */ diff --git a/src/Model/SharedItem.php b/src/Model/SharedItem.php index c095c44b..c081ee5f 100644 --- a/src/Model/SharedItem.php +++ b/src/Model/SharedItem.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['shared'] = isset($data['shared']) ? $data['shared'] : null; diff --git a/src/Model/SignHashDocument.php b/src/Model/SignHashDocument.php index a6a2b465..8ef3ba4e 100644 --- a/src/Model/SignHashDocument.php +++ b/src/Model/SignHashDocument.php @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['data'] = isset($data['data']) ? $data['data'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; diff --git a/src/Model/SignHashSessionInfoResponse.php b/src/Model/SignHashSessionInfoResponse.php index ca5f4f32..51711bfb 100644 --- a/src/Model/SignHashSessionInfoResponse.php +++ b/src/Model/SignHashSessionInfoResponse.php @@ -193,9 +193,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['documents'] = isset($data['documents']) ? $data['documents'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; @@ -307,7 +307,7 @@ public function getLanguage() /** * Sets language * - * @param ?string $language + * @param ?string $language * * @return $this */ @@ -331,7 +331,7 @@ public function getRedirectionUrl() /** * Sets redirection_url * - * @param ?string $redirection_url + * @param ?string $redirection_url * * @return $this */ @@ -355,7 +355,7 @@ public function getRemainingSignatureRequests() /** * Sets remaining_signature_requests * - * @param int $remaining_signature_requests + * @param int $remaining_signature_requests * * @return $this */ diff --git a/src/Model/SignHere.php b/src/Model/SignHere.php index 9ac6f11a..dae4b966 100644 --- a/src/Model/SignHere.php +++ b/src/Model/SignHere.php @@ -623,7 +623,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/SignSessionInfoRequest.php b/src/Model/SignSessionInfoRequest.php index 90e5c21b..d3f19c5b 100644 --- a/src/Model/SignSessionInfoRequest.php +++ b/src/Model/SignSessionInfoRequest.php @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['certificate'] = isset($data['certificate']) ? $data['certificate'] : null; $this->container['max_signature_length'] = isset($data['max_signature_length']) ? $data['max_signature_length'] : null; diff --git a/src/Model/SignatureDataInfo.php b/src/Model/SignatureDataInfo.php index e7588a5f..6245dc90 100644 --- a/src/Model/SignatureDataInfo.php +++ b/src/Model/SignatureDataInfo.php @@ -168,9 +168,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_security_store'] = isset($data['document_security_store']) ? $data['document_security_store'] : null; $this->container['signature_data'] = isset($data['signature_data']) ? $data['signature_data'] : null; @@ -253,7 +253,7 @@ public function getSignatureData() /** * Sets signature_data * - * @param ?string $signature_data + * @param ?string $signature_data * * @return $this */ @@ -277,7 +277,7 @@ public function getSignatureFieldName() /** * Sets signature_field_name * - * @param ?string $signature_field_name + * @param ?string $signature_field_name * * @return $this */ diff --git a/src/Model/SignatureGroup.php b/src/Model/SignatureGroup.php index 8239e4d9..a786a5ca 100644 --- a/src/Model/SignatureGroup.php +++ b/src/Model/SignatureGroup.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['group_id'] = isset($data['group_id']) ? $data['group_id'] : null; $this->container['group_name'] = isset($data['group_name']) ? $data['group_name'] : null; @@ -231,7 +231,7 @@ public function getGroupId() /** * Sets group_id * - * @param ?string $group_id + * @param ?string $group_id * * @return $this */ @@ -279,7 +279,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ diff --git a/src/Model/SignatureGroupDef.php b/src/Model/SignatureGroupDef.php index 316cce32..24dc9d0f 100644 --- a/src/Model/SignatureGroupDef.php +++ b/src/Model/SignatureGroupDef.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['group_id'] = isset($data['group_id']) ? $data['group_id'] : null; $this->container['rights'] = isset($data['rights']) ? $data['rights'] : null; @@ -225,7 +225,7 @@ public function getGroupId() /** * Sets group_id * - * @param ?string $group_id + * @param ?string $group_id * * @return $this */ @@ -249,7 +249,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ diff --git a/src/Model/SignatureProperties.php b/src/Model/SignatureProperties.php index b39c78cd..3985c755 100644 --- a/src/Model/SignatureProperties.php +++ b/src/Model/SignatureProperties.php @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['filter'] = isset($data['filter']) ? $data['filter'] : null; $this->container['sub_filter'] = isset($data['sub_filter']) ? $data['sub_filter'] : null; diff --git a/src/Model/SignatureProviderRequiredOption.php b/src/Model/SignatureProviderRequiredOption.php index 29bba99c..42071ebe 100644 --- a/src/Model/SignatureProviderRequiredOption.php +++ b/src/Model/SignatureProviderRequiredOption.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['required_signature_provider_option_ids'] = isset($data['required_signature_provider_option_ids']) ? $data['required_signature_provider_option_ids'] : null; $this->container['signer_type'] = isset($data['signer_type']) ? $data['signer_type'] : null; @@ -226,7 +226,7 @@ public function getRequiredSignatureProviderOptionIds() /** * Sets required_signature_provider_option_ids * - * @param ?string[] $required_signature_provider_option_ids + * @param ?string[] $required_signature_provider_option_ids * * @return $this */ @@ -250,7 +250,7 @@ public function getSignerType() /** * Sets signer_type * - * @param ?string $signer_type + * @param ?string $signer_type * * @return $this */ diff --git a/src/Model/SignatureType.php b/src/Model/SignatureType.php index 91c8c100..566df998 100644 --- a/src/Model/SignatureType.php +++ b/src/Model/SignatureType.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; @@ -226,7 +226,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -250,7 +250,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/SignatureUser.php b/src/Model/SignatureUser.php index 1cc5b6af..80fb7704 100644 --- a/src/Model/SignatureUser.php +++ b/src/Model/SignatureUser.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; $this->container['rights'] = isset($data['rights']) ? $data['rights'] : null; @@ -237,7 +237,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -261,7 +261,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ @@ -285,7 +285,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -309,7 +309,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ diff --git a/src/Model/SignatureUserDef.php b/src/Model/SignatureUserDef.php index afabd911..63eefe52 100644 --- a/src/Model/SignatureUserDef.php +++ b/src/Model/SignatureUserDef.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; $this->container['rights'] = isset($data['rights']) ? $data['rights'] : null; @@ -231,7 +231,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -255,7 +255,7 @@ public function getRights() /** * Sets rights * - * @param ?string $rights + * @param ?string $rights * * @return $this */ @@ -279,7 +279,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/Signer.php b/src/Model/Signer.php index 1ad4e842..83a4040b 100644 --- a/src/Model/Signer.php +++ b/src/Model/Signer.php @@ -656,9 +656,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -673,7 +673,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -886,7 +886,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -910,7 +910,7 @@ public function getAgentCanEditEmail() /** * Sets agent_can_edit_email * - * @param ?string $agent_can_edit_email + * @param ?string $agent_can_edit_email * * @return $this */ @@ -934,7 +934,7 @@ public function getAgentCanEditName() /** * Sets agent_can_edit_name * - * @param ?string $agent_can_edit_name + * @param ?string $agent_can_edit_name * * @return $this */ @@ -958,7 +958,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -982,7 +982,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -1006,7 +1006,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -1054,7 +1054,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -1126,7 +1126,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -1150,7 +1150,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1174,7 +1174,7 @@ public function getCreationReason() /** * Sets creation_reason * - * @param ?string $creation_reason + * @param ?string $creation_reason * * @return $this */ @@ -1270,7 +1270,7 @@ public function getDefaultRecipient() /** * Sets default_recipient * - * @param ?string $default_recipient + * @param ?string $default_recipient * * @return $this */ @@ -1294,7 +1294,7 @@ public function getDelegatedBy() /** * Sets delegated_by * - * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by + * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by * * @return $this */ @@ -1318,7 +1318,7 @@ public function getDelegatedTo() /** * Sets delegated_to * - * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to + * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to * * @return $this */ @@ -1414,7 +1414,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1438,7 +1438,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1462,7 +1462,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1486,7 +1486,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1582,7 +1582,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1774,7 +1774,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1990,7 +1990,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -2038,7 +2038,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -2062,7 +2062,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -2086,7 +2086,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2134,7 +2134,7 @@ public function getNotaryId() /** * Sets notary_id * - * @param ?string $notary_id + * @param ?string $notary_id * * @return $this */ @@ -2158,7 +2158,7 @@ public function getNotarySignerEmailSent() /** * Sets notary_signer_email_sent * - * @param ?string $notary_signer_email_sent + * @param ?string $notary_signer_email_sent * * @return $this */ @@ -2374,7 +2374,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2422,7 +2422,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2446,7 +2446,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -2470,7 +2470,7 @@ public function getRecipientSuppliesTabs() /** * Sets recipient_supplies_tabs * - * @param ?string $recipient_supplies_tabs + * @param ?string $recipient_supplies_tabs * * @return $this */ @@ -2494,7 +2494,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2638,7 +2638,7 @@ public function getRequireUploadSignature() /** * Sets require_upload_signature * - * @param ?string $require_upload_signature + * @param ?string $require_upload_signature * * @return $this */ @@ -3022,7 +3022,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -3046,7 +3046,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -3142,7 +3142,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -3166,7 +3166,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -3190,7 +3190,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ diff --git a/src/Model/SignerAttachment.php b/src/Model/SignerAttachment.php index fd164db8..dc56cf2f 100644 --- a/src/Model/SignerAttachment.php +++ b/src/Model/SignerAttachment.php @@ -586,9 +586,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -603,7 +603,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -730,7 +730,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -754,7 +754,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -778,7 +778,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1066,7 +1066,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1258,7 +1258,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1282,7 +1282,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1402,7 +1402,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1546,7 +1546,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1570,7 +1570,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1618,7 +1618,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1666,7 +1666,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1714,7 +1714,7 @@ public function getHandDrawRequired() /** * Sets hand_draw_required * - * @param ?string $hand_draw_required + * @param ?string $hand_draw_required * * @return $this */ @@ -1810,7 +1810,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1834,7 +1834,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1882,7 +1882,7 @@ public function getOptional() /** * Sets optional * - * @param ?string $optional + * @param ?string $optional * * @return $this */ @@ -2002,7 +2002,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2074,7 +2074,7 @@ public function getScaleValue() /** * Sets scale_value * - * @param ?string $scale_value + * @param ?string $scale_value * * @return $this */ @@ -2146,7 +2146,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2218,7 +2218,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2242,7 +2242,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2386,7 +2386,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2434,7 +2434,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2578,7 +2578,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2626,7 +2626,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/SignerEmailNotifications.php b/src/Model/SignerEmailNotifications.php index 3961d660..ec309d63 100644 --- a/src/Model/SignerEmailNotifications.php +++ b/src/Model/SignerEmailNotifications.php @@ -236,9 +236,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -253,7 +253,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agent_notification'] = isset($data['agent_notification']) ? $data['agent_notification'] : null; $this->container['carbon_copy_notification'] = isset($data['carbon_copy_notification']) ? $data['carbon_copy_notification'] : null; @@ -382,7 +382,7 @@ public function getCommentsOnlyPrivateAndMention() /** * Sets comments_only_private_and_mention * - * @param ?string $comments_only_private_and_mention + * @param ?string $comments_only_private_and_mention * * @return $this */ @@ -406,7 +406,7 @@ public function getCommentsReceiveAll() /** * Sets comments_receive_all * - * @param ?string $comments_receive_all + * @param ?string $comments_receive_all * * @return $this */ @@ -670,7 +670,7 @@ public function getWhenSigningGroupMember() /** * Sets when_signing_group_member * - * @param ?string $when_signing_group_member + * @param ?string $when_signing_group_member * * @return $this */ diff --git a/src/Model/SigningGroup.php b/src/Model/SigningGroup.php index 9ead4937..27a0cc03 100644 --- a/src/Model/SigningGroup.php +++ b/src/Model/SigningGroup.php @@ -206,9 +206,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -223,7 +223,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['created'] = isset($data['created']) ? $data['created'] : null; $this->container['created_by'] = isset($data['created_by']) ? $data['created_by'] : null; @@ -274,7 +274,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ @@ -298,7 +298,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param ?string $created_by + * @param ?string $created_by * * @return $this */ @@ -346,7 +346,7 @@ public function getGroupEmail() /** * Sets group_email * - * @param ?string $group_email + * @param ?string $group_email * * @return $this */ @@ -394,7 +394,7 @@ public function getGroupType() /** * Sets group_type * - * @param ?string $group_type + * @param ?string $group_type * * @return $this */ @@ -418,7 +418,7 @@ public function getModified() /** * Sets modified * - * @param ?string $modified + * @param ?string $modified * * @return $this */ @@ -442,7 +442,7 @@ public function getModifiedBy() /** * Sets modified_by * - * @param ?string $modified_by + * @param ?string $modified_by * * @return $this */ @@ -490,7 +490,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\SigningGroupUser[] $users + * @param \DocuSign\eSign\Model\SigningGroupUser[] $users * * @return $this */ diff --git a/src/Model/SigningGroupInformation.php b/src/Model/SigningGroupInformation.php index afc6817e..6b4055f6 100644 --- a/src/Model/SigningGroupInformation.php +++ b/src/Model/SigningGroupInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['groups'] = isset($data['groups']) ? $data['groups'] : null; } diff --git a/src/Model/SigningGroupUser.php b/src/Model/SigningGroupUser.php index fb950db2..ccf0e6e9 100644 --- a/src/Model/SigningGroupUser.php +++ b/src/Model/SigningGroupUser.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -231,7 +231,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ diff --git a/src/Model/SigningGroupUsers.php b/src/Model/SigningGroupUsers.php index 9e86f26e..20a31b6e 100644 --- a/src/Model/SigningGroupUsers.php +++ b/src/Model/SigningGroupUsers.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['users'] = isset($data['users']) ? $data['users'] : null; } @@ -219,7 +219,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\SigningGroupUser[] $users + * @param \DocuSign\eSign\Model\SigningGroupUser[] $users * * @return $this */ diff --git a/src/Model/SmartContractInformation.php b/src/Model/SmartContractInformation.php index a8b54f43..a709e54a 100644 --- a/src/Model/SmartContractInformation.php +++ b/src/Model/SmartContractInformation.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['uri'] = isset($data['uri']) ? $data['uri'] : null; @@ -225,7 +225,7 @@ public function getCode() /** * Sets code * - * @param ?string $code + * @param ?string $code * * @return $this */ @@ -249,7 +249,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/SmartSection.php b/src/Model/SmartSection.php index 49507692..9cc38683 100644 --- a/src/Model/SmartSection.php +++ b/src/Model/SmartSection.php @@ -615,9 +615,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -632,7 +632,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -765,7 +765,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -789,7 +789,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -813,7 +813,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1101,7 +1101,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1293,7 +1293,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1317,7 +1317,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1341,7 +1341,7 @@ public function getCaseSensitive() /** * Sets case_sensitive * - * @param ?bool $case_sensitive + * @param ?bool $case_sensitive * * @return $this */ @@ -1461,7 +1461,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1605,7 +1605,7 @@ public function getEndAnchor() /** * Sets end_anchor * - * @param ?string $end_anchor + * @param ?string $end_anchor * * @return $this */ @@ -1677,7 +1677,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1701,7 +1701,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1749,7 +1749,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1797,7 +1797,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1965,7 +1965,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1989,7 +1989,7 @@ public function getOverlayType() /** * Sets overlay_type * - * @param ?string $overlay_type + * @param ?string $overlay_type * * @return $this */ @@ -2109,7 +2109,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2181,7 +2181,7 @@ public function getRemoveEndAnchor() /** * Sets remove_end_anchor * - * @param ?bool $remove_end_anchor + * @param ?bool $remove_end_anchor * * @return $this */ @@ -2205,7 +2205,7 @@ public function getRemoveStartAnchor() /** * Sets remove_start_anchor * - * @param ?bool $remove_start_anchor + * @param ?bool $remove_start_anchor * * @return $this */ @@ -2301,7 +2301,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2325,7 +2325,7 @@ public function getStartAnchor() /** * Sets start_anchor * - * @param ?string $start_anchor + * @param ?string $start_anchor * * @return $this */ @@ -2421,7 +2421,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2445,7 +2445,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2565,7 +2565,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2613,7 +2613,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2757,7 +2757,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2805,7 +2805,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/SmartSectionAnchorPosition.php b/src/Model/SmartSectionAnchorPosition.php index 7d713311..ad6a5f51 100644 --- a/src/Model/SmartSectionAnchorPosition.php +++ b/src/Model/SmartSectionAnchorPosition.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['page_number'] = isset($data['page_number']) ? $data['page_number'] : null; $this->container['x_position'] = isset($data['x_position']) ? $data['x_position'] : null; diff --git a/src/Model/SmartSectionCollapsibleDisplaySettings.php b/src/Model/SmartSectionCollapsibleDisplaySettings.php index d5ef6493..c91e060f 100644 --- a/src/Model/SmartSectionCollapsibleDisplaySettings.php +++ b/src/Model/SmartSectionCollapsibleDisplaySettings.php @@ -222,7 +222,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['arrow_closed'] = isset($data['arrow_closed']) ? $data['arrow_closed'] : null; $this->container['arrow_color'] = isset($data['arrow_color']) ? $data['arrow_color'] : null; diff --git a/src/Model/SmartSectionDisplaySettings.php b/src/Model/SmartSectionDisplaySettings.php index c53bc9a8..6c5137b1 100644 --- a/src/Model/SmartSectionDisplaySettings.php +++ b/src/Model/SmartSectionDisplaySettings.php @@ -216,9 +216,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -233,7 +233,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cell_style'] = isset($data['cell_style']) ? $data['cell_style'] : null; $this->container['collapsible_settings'] = isset($data['collapsible_settings']) ? $data['collapsible_settings'] : null; @@ -286,7 +286,7 @@ public function getCellStyle() /** * Sets cell_style * - * @param ?string $cell_style + * @param ?string $cell_style * * @return $this */ @@ -334,7 +334,7 @@ public function getDisplay() /** * Sets display * - * @param ?string $display + * @param ?string $display * * @return $this */ @@ -358,7 +358,7 @@ public function getDisplayLabel() /** * Sets display_label * - * @param ?string $display_label + * @param ?string $display_label * * @return $this */ @@ -382,7 +382,7 @@ public function getDisplayOrder() /** * Sets display_order * - * @param ?int $display_order + * @param ?int $display_order * * @return $this */ @@ -406,7 +406,7 @@ public function getDisplayPageNumber() /** * Sets display_page_number * - * @param ?int $display_page_number + * @param ?int $display_page_number * * @return $this */ @@ -430,7 +430,7 @@ public function getHideLabelWhenOpened() /** * Sets hide_label_when_opened * - * @param ?bool $hide_label_when_opened + * @param ?bool $hide_label_when_opened * * @return $this */ @@ -454,7 +454,7 @@ public function getInlineOuterStyle() /** * Sets inline_outer_style * - * @param ?string $inline_outer_style + * @param ?string $inline_outer_style * * @return $this */ @@ -478,7 +478,7 @@ public function getLabelWhenOpened() /** * Sets label_when_opened * - * @param ?string $label_when_opened + * @param ?string $label_when_opened * * @return $this */ @@ -502,7 +502,7 @@ public function getPreLabel() /** * Sets pre_label * - * @param ?string $pre_label + * @param ?string $pre_label * * @return $this */ @@ -526,7 +526,7 @@ public function getScrollToTopWhenOpened() /** * Sets scroll_to_top_when_opened * - * @param ?bool $scroll_to_top_when_opened + * @param ?bool $scroll_to_top_when_opened * * @return $this */ @@ -550,7 +550,7 @@ public function getTableStyle() /** * Sets table_style * - * @param ?string $table_style + * @param ?string $table_style * * @return $this */ diff --git a/src/Model/SocialAccountInformation.php b/src/Model/SocialAccountInformation.php index 424243b5..f94692e1 100644 --- a/src/Model/SocialAccountInformation.php +++ b/src/Model/SocialAccountInformation.php @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/SocialAuthentication.php b/src/Model/SocialAuthentication.php index 3a7b1ebf..f982e7f5 100644 --- a/src/Model/SocialAuthentication.php +++ b/src/Model/SocialAuthentication.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authentication'] = isset($data['authentication']) ? $data['authentication'] : null; } diff --git a/src/Model/Ssn.php b/src/Model/Ssn.php index b4547df9..7fe275e8 100644 --- a/src/Model/Ssn.php +++ b/src/Model/Ssn.php @@ -766,9 +766,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -783,7 +783,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -946,7 +946,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -970,7 +970,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -994,7 +994,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1282,7 +1282,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1522,7 +1522,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1546,7 +1546,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1714,7 +1714,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1906,7 +1906,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -2074,7 +2074,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2122,7 +2122,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2170,7 +2170,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2458,7 +2458,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2650,7 +2650,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2962,7 +2962,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -3034,7 +3034,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -3106,7 +3106,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -3130,7 +3130,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3274,7 +3274,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3322,7 +3322,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3466,7 +3466,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3706,7 +3706,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/Ssn4InformationInput.php b/src/Model/Ssn4InformationInput.php index d591df44..f50511f3 100644 --- a/src/Model/Ssn4InformationInput.php +++ b/src/Model/Ssn4InformationInput.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['display_level_code'] = isset($data['display_level_code']) ? $data['display_level_code'] : null; $this->container['receive_in_response'] = isset($data['receive_in_response']) ? $data['receive_in_response'] : null; diff --git a/src/Model/Ssn9InformationInput.php b/src/Model/Ssn9InformationInput.php index 54c9b7f5..2f2a675c 100644 --- a/src/Model/Ssn9InformationInput.php +++ b/src/Model/Ssn9InformationInput.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['display_level_code'] = isset($data['display_level_code']) ? $data['display_level_code'] : null; $this->container['ssn9'] = isset($data['ssn9']) ? $data['ssn9'] : null; diff --git a/src/Model/Stamp.php b/src/Model/Stamp.php index c443ae43..d36169e1 100644 --- a/src/Model/Stamp.php +++ b/src/Model/Stamp.php @@ -235,9 +235,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -252,7 +252,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['adopted_date_time'] = isset($data['adopted_date_time']) ? $data['adopted_date_time'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -309,7 +309,7 @@ public function getAdoptedDateTime() /** * Sets adopted_date_time * - * @param ?string $adopted_date_time + * @param ?string $adopted_date_time * * @return $this */ @@ -357,7 +357,7 @@ public function getCustomField() /** * Sets custom_field * - * @param ?string $custom_field + * @param ?string $custom_field * * @return $this */ @@ -405,7 +405,7 @@ public function getDisallowUserResizeStamp() /** * Sets disallow_user_resize_stamp * - * @param ?string $disallow_user_resize_stamp + * @param ?string $disallow_user_resize_stamp * * @return $this */ @@ -453,7 +453,7 @@ public function getExternalId() /** * Sets external_id * - * @param ?string $external_id + * @param ?string $external_id * * @return $this */ @@ -477,7 +477,7 @@ public function getImageBase64() /** * Sets image_base64 * - * @param ?string $image_base64 + * @param ?string $image_base64 * * @return $this */ @@ -501,7 +501,7 @@ public function getImageType() /** * Sets image_type * - * @param ?string $image_type + * @param ?string $image_type * * @return $this */ @@ -549,7 +549,7 @@ public function getPhoneticName() /** * Sets phonetic_name * - * @param ?string $phonetic_name + * @param ?string $phonetic_name * * @return $this */ @@ -597,7 +597,7 @@ public function getStampFormat() /** * Sets stamp_format * - * @param ?string $stamp_format + * @param ?string $stamp_format * * @return $this */ @@ -621,7 +621,7 @@ public function getStampImageUri() /** * Sets stamp_image_uri * - * @param ?string $stamp_image_uri + * @param ?string $stamp_image_uri * * @return $this */ @@ -645,7 +645,7 @@ public function getStampSizeMm() /** * Sets stamp_size_mm * - * @param ?string $stamp_size_mm + * @param ?string $stamp_size_mm * * @return $this */ diff --git a/src/Model/SupportedLanguages.php b/src/Model/SupportedLanguages.php index 334e8d4f..e192e22f 100644 --- a/src/Model/SupportedLanguages.php +++ b/src/Model/SupportedLanguages.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['languages'] = isset($data['languages']) ? $data['languages'] : null; } @@ -220,7 +220,7 @@ public function getLanguages() /** * Sets languages * - * @param \DocuSign\eSign\Model\NameValue[] $languages + * @param \DocuSign\eSign\Model\NameValue[] $languages * * @return $this */ diff --git a/src/Model/TabAccountSettings.php b/src/Model/TabAccountSettings.php index 98305705..66da0f22 100644 --- a/src/Model/TabAccountSettings.php +++ b/src/Model/TabAccountSettings.php @@ -395,9 +395,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -412,7 +412,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow_tab_order'] = isset($data['allow_tab_order']) ? $data['allow_tab_order'] : null; $this->container['allow_tab_order_metadata'] = isset($data['allow_tab_order_metadata']) ? $data['allow_tab_order_metadata'] : null; @@ -501,7 +501,7 @@ public function getAllowTabOrder() /** * Sets allow_tab_order * - * @param ?string $allow_tab_order + * @param ?string $allow_tab_order * * @return $this */ @@ -549,7 +549,7 @@ public function getApproveDeclineTabsEnabled() /** * Sets approve_decline_tabs_enabled * - * @param ?string $approve_decline_tabs_enabled + * @param ?string $approve_decline_tabs_enabled * * @return $this */ @@ -597,7 +597,7 @@ public function getCalculatedFieldsEnabled() /** * Sets calculated_fields_enabled * - * @param ?string $calculated_fields_enabled + * @param ?string $calculated_fields_enabled * * @return $this */ @@ -645,7 +645,7 @@ public function getCheckboxTabsEnabled() /** * Sets checkbox_tabs_enabled * - * @param ?string $checkbox_tabs_enabled + * @param ?string $checkbox_tabs_enabled * * @return $this */ @@ -693,7 +693,7 @@ public function getDataFieldRegexEnabled() /** * Sets data_field_regex_enabled * - * @param ?string $data_field_regex_enabled + * @param ?string $data_field_regex_enabled * * @return $this */ @@ -741,7 +741,7 @@ public function getDataFieldSizeEnabled() /** * Sets data_field_size_enabled * - * @param ?string $data_field_size_enabled + * @param ?string $data_field_size_enabled * * @return $this */ @@ -789,7 +789,7 @@ public function getDrawTabsEnabled() /** * Sets draw_tabs_enabled * - * @param ?string $draw_tabs_enabled + * @param ?string $draw_tabs_enabled * * @return $this */ @@ -813,7 +813,7 @@ public function getDrawTabsMetadata() /** * Sets draw_tabs_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $draw_tabs_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $draw_tabs_metadata * * @return $this */ @@ -837,7 +837,7 @@ public function getEnableTabAgreementDetails() /** * Sets enable_tab_agreement_details * - * @param ?string $enable_tab_agreement_details + * @param ?string $enable_tab_agreement_details * * @return $this */ @@ -861,7 +861,7 @@ public function getEnableTabAgreementDetailsMetadata() /** * Sets enable_tab_agreement_details_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_tab_agreement_details_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_tab_agreement_details_metadata * * @return $this */ @@ -885,7 +885,7 @@ public function getFirstLastEmailTabsEnabled() /** * Sets first_last_email_tabs_enabled * - * @param ?string $first_last_email_tabs_enabled + * @param ?string $first_last_email_tabs_enabled * * @return $this */ @@ -933,7 +933,7 @@ public function getListTabsEnabled() /** * Sets list_tabs_enabled * - * @param ?string $list_tabs_enabled + * @param ?string $list_tabs_enabled * * @return $this */ @@ -981,7 +981,7 @@ public function getNoteTabsEnabled() /** * Sets note_tabs_enabled * - * @param ?string $note_tabs_enabled + * @param ?string $note_tabs_enabled * * @return $this */ @@ -1029,7 +1029,7 @@ public function getNumericalTabsEnabled() /** * Sets numerical_tabs_enabled * - * @param ?string $numerical_tabs_enabled + * @param ?string $numerical_tabs_enabled * * @return $this */ @@ -1053,7 +1053,7 @@ public function getNumericalTabsMetadata() /** * Sets numerical_tabs_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $numerical_tabs_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $numerical_tabs_metadata * * @return $this */ @@ -1077,7 +1077,7 @@ public function getPrefillTabsEnabled() /** * Sets prefill_tabs_enabled * - * @param ?string $prefill_tabs_enabled + * @param ?string $prefill_tabs_enabled * * @return $this */ @@ -1101,7 +1101,7 @@ public function getPrefillTabsMetadata() /** * Sets prefill_tabs_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $prefill_tabs_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $prefill_tabs_metadata * * @return $this */ @@ -1125,7 +1125,7 @@ public function getRadioTabsEnabled() /** * Sets radio_tabs_enabled * - * @param ?string $radio_tabs_enabled + * @param ?string $radio_tabs_enabled * * @return $this */ @@ -1173,7 +1173,7 @@ public function getSavingCustomTabsEnabled() /** * Sets saving_custom_tabs_enabled * - * @param ?string $saving_custom_tabs_enabled + * @param ?string $saving_custom_tabs_enabled * * @return $this */ @@ -1221,7 +1221,7 @@ public function getSenderToChangeTabAssignmentsEnabled() /** * Sets sender_to_change_tab_assignments_enabled * - * @param ?string $sender_to_change_tab_assignments_enabled + * @param ?string $sender_to_change_tab_assignments_enabled * * @return $this */ @@ -1269,7 +1269,7 @@ public function getSharedCustomTabsEnabled() /** * Sets shared_custom_tabs_enabled * - * @param ?string $shared_custom_tabs_enabled + * @param ?string $shared_custom_tabs_enabled * * @return $this */ @@ -1317,7 +1317,7 @@ public function getTabDataLabelEnabled() /** * Sets tab_data_label_enabled * - * @param ?string $tab_data_label_enabled + * @param ?string $tab_data_label_enabled * * @return $this */ @@ -1365,7 +1365,7 @@ public function getTabLocationEnabled() /** * Sets tab_location_enabled * - * @param ?string $tab_location_enabled + * @param ?string $tab_location_enabled * * @return $this */ @@ -1413,7 +1413,7 @@ public function getTabLockingEnabled() /** * Sets tab_locking_enabled * - * @param ?string $tab_locking_enabled + * @param ?string $tab_locking_enabled * * @return $this */ @@ -1461,7 +1461,7 @@ public function getTabScaleEnabled() /** * Sets tab_scale_enabled * - * @param ?string $tab_scale_enabled + * @param ?string $tab_scale_enabled * * @return $this */ @@ -1509,7 +1509,7 @@ public function getTabTextFormattingEnabled() /** * Sets tab_text_formatting_enabled * - * @param ?string $tab_text_formatting_enabled + * @param ?string $tab_text_formatting_enabled * * @return $this */ @@ -1557,7 +1557,7 @@ public function getTextTabsEnabled() /** * Sets text_tabs_enabled * - * @param ?string $text_tabs_enabled + * @param ?string $text_tabs_enabled * * @return $this */ @@ -1605,7 +1605,7 @@ public function getUriTabsEnabled() /** * Sets uri_tabs_enabled * - * @param ?string $uri_tabs_enabled + * @param ?string $uri_tabs_enabled * * @return $this */ @@ -1629,7 +1629,7 @@ public function getUriTabsMetadata() /** * Sets uri_tabs_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $uri_tabs_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $uri_tabs_metadata * * @return $this */ diff --git a/src/Model/TabGroup.php b/src/Model/TabGroup.php index ce8332e8..7961019a 100644 --- a/src/Model/TabGroup.php +++ b/src/Model/TabGroup.php @@ -600,9 +600,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -617,7 +617,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -747,7 +747,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -771,7 +771,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -795,7 +795,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1083,7 +1083,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1275,7 +1275,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1299,7 +1299,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1419,7 +1419,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1563,7 +1563,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1587,7 +1587,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1635,7 +1635,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1683,7 +1683,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -1731,7 +1731,7 @@ public function getGroupLabel() /** * Sets group_label * - * @param ?string $group_label + * @param ?string $group_label * * @return $this */ @@ -1779,7 +1779,7 @@ public function getGroupRule() /** * Sets group_rule * - * @param ?string $group_rule + * @param ?string $group_rule * * @return $this */ @@ -1875,7 +1875,7 @@ public function getMaximumAllowed() /** * Sets maximum_allowed * - * @param ?string $maximum_allowed + * @param ?string $maximum_allowed * * @return $this */ @@ -1947,7 +1947,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -1971,7 +1971,7 @@ public function getMinimumRequired() /** * Sets minimum_required * - * @param ?string $minimum_required + * @param ?string $minimum_required * * @return $this */ @@ -2091,7 +2091,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2187,7 +2187,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2259,7 +2259,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2283,7 +2283,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2379,7 +2379,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2427,7 +2427,7 @@ public function getTabScope() /** * Sets tab_scope * - * @param ?string $tab_scope + * @param ?string $tab_scope * * @return $this */ @@ -2475,7 +2475,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2619,7 +2619,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2715,7 +2715,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/TabMetadata.php b/src/Model/TabMetadata.php index 33e2db56..7612674c 100644 --- a/src/Model/TabMetadata.php +++ b/src/Model/TabMetadata.php @@ -425,9 +425,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -442,7 +442,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['anchor'] = isset($data['anchor']) ? $data['anchor'] : null; $this->container['anchor_case_sensitive'] = isset($data['anchor_case_sensitive']) ? $data['anchor_case_sensitive'] : null; @@ -753,7 +753,7 @@ public function getCollaborative() /** * Sets collaborative * - * @param ?string $collaborative + * @param ?string $collaborative * * @return $this */ @@ -1257,7 +1257,7 @@ public function getMaxNumericalValue() /** * Sets max_numerical_value * - * @param ?string $max_numerical_value + * @param ?string $max_numerical_value * * @return $this */ @@ -1305,7 +1305,7 @@ public function getMinNumericalValue() /** * Sets min_numerical_value * - * @param ?string $min_numerical_value + * @param ?string $min_numerical_value * * @return $this */ @@ -1329,7 +1329,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -1353,7 +1353,7 @@ public function getNumericalValue() /** * Sets numerical_value * - * @param ?string $numerical_value + * @param ?string $numerical_value * * @return $this */ @@ -1377,7 +1377,7 @@ public function getPaymentItemCode() /** * Sets payment_item_code * - * @param ?string $payment_item_code + * @param ?string $payment_item_code * * @return $this */ @@ -1401,7 +1401,7 @@ public function getPaymentItemDescription() /** * Sets payment_item_description * - * @param ?string $payment_item_description + * @param ?string $payment_item_description * * @return $this */ @@ -1425,7 +1425,7 @@ public function getPaymentItemName() /** * Sets payment_item_name * - * @param ?string $payment_item_name + * @param ?string $payment_item_name * * @return $this */ @@ -1521,7 +1521,7 @@ public function getScaleValue() /** * Sets scale_value * - * @param ?string $scale_value + * @param ?string $scale_value * * @return $this */ @@ -1545,7 +1545,7 @@ public function getSelected() /** * Sets selected * - * @param ?string $selected + * @param ?string $selected * * @return $this */ @@ -1593,7 +1593,7 @@ public function getSignatureProviderId() /** * Sets signature_provider_id * - * @param ?string $signature_provider_id + * @param ?string $signature_provider_id * * @return $this */ @@ -1617,7 +1617,7 @@ public function getStampType() /** * Sets stamp_type * - * @param ?string $stamp_type + * @param ?string $stamp_type * * @return $this */ @@ -1785,7 +1785,7 @@ public function getValidationType() /** * Sets validation_type * - * @param ?string $validation_type + * @param ?string $validation_type * * @return $this */ diff --git a/src/Model/TabMetadataList.php b/src/Model/TabMetadataList.php index 3a4c5b9d..1ce5aded 100644 --- a/src/Model/TabMetadataList.php +++ b/src/Model/TabMetadataList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['tabs'] = isset($data['tabs']) ? $data['tabs'] : null; } @@ -219,7 +219,7 @@ public function getTabs() /** * Sets tabs * - * @param \DocuSign\eSign\Model\TabMetadata[] $tabs + * @param \DocuSign\eSign\Model\TabMetadata[] $tabs * * @return $this */ diff --git a/src/Model/Tabs.php b/src/Model/Tabs.php index 2af6f738..348935fe 100644 --- a/src/Model/Tabs.php +++ b/src/Model/Tabs.php @@ -351,9 +351,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -368,7 +368,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approve_tabs'] = isset($data['approve_tabs']) ? $data['approve_tabs'] : null; $this->container['checkbox_tabs'] = isset($data['checkbox_tabs']) ? $data['checkbox_tabs'] : null; @@ -496,7 +496,7 @@ public function getCommentThreadTabs() /** * Sets comment_thread_tabs * - * @param \DocuSign\eSign\Model\CommentThread[] $comment_thread_tabs + * @param \DocuSign\eSign\Model\CommentThread[] $comment_thread_tabs * * @return $this */ @@ -520,7 +520,7 @@ public function getCommissionCountyTabs() /** * Sets commission_county_tabs * - * @param \DocuSign\eSign\Model\CommissionCounty[] $commission_county_tabs + * @param \DocuSign\eSign\Model\CommissionCounty[] $commission_county_tabs * * @return $this */ @@ -544,7 +544,7 @@ public function getCommissionExpirationTabs() /** * Sets commission_expiration_tabs * - * @param \DocuSign\eSign\Model\CommissionExpiration[] $commission_expiration_tabs + * @param \DocuSign\eSign\Model\CommissionExpiration[] $commission_expiration_tabs * * @return $this */ @@ -568,7 +568,7 @@ public function getCommissionNumberTabs() /** * Sets commission_number_tabs * - * @param \DocuSign\eSign\Model\CommissionNumber[] $commission_number_tabs + * @param \DocuSign\eSign\Model\CommissionNumber[] $commission_number_tabs * * @return $this */ @@ -592,7 +592,7 @@ public function getCommissionStateTabs() /** * Sets commission_state_tabs * - * @param \DocuSign\eSign\Model\CommissionState[] $commission_state_tabs + * @param \DocuSign\eSign\Model\CommissionState[] $commission_state_tabs * * @return $this */ @@ -712,7 +712,7 @@ public function getDrawTabs() /** * Sets draw_tabs * - * @param \DocuSign\eSign\Model\Draw[] $draw_tabs + * @param \DocuSign\eSign\Model\Draw[] $draw_tabs * * @return $this */ @@ -952,7 +952,7 @@ public function getNotarizeTabs() /** * Sets notarize_tabs * - * @param \DocuSign\eSign\Model\Notarize[] $notarize_tabs + * @param \DocuSign\eSign\Model\Notarize[] $notarize_tabs * * @return $this */ @@ -976,7 +976,7 @@ public function getNotarySealTabs() /** * Sets notary_seal_tabs * - * @param \DocuSign\eSign\Model\NotarySeal[] $notary_seal_tabs + * @param \DocuSign\eSign\Model\NotarySeal[] $notary_seal_tabs * * @return $this */ @@ -1048,7 +1048,7 @@ public function getNumericalTabs() /** * Sets numerical_tabs * - * @param \DocuSign\eSign\Model\Numerical[] $numerical_tabs + * @param \DocuSign\eSign\Model\Numerical[] $numerical_tabs * * @return $this */ @@ -1072,7 +1072,7 @@ public function getPhoneNumberTabs() /** * Sets phone_number_tabs * - * @param \DocuSign\eSign\Model\PhoneNumber[] $phone_number_tabs + * @param \DocuSign\eSign\Model\PhoneNumber[] $phone_number_tabs * * @return $this */ @@ -1096,7 +1096,7 @@ public function getPolyLineOverlayTabs() /** * Sets poly_line_overlay_tabs * - * @param \DocuSign\eSign\Model\PolyLineOverlay[] $poly_line_overlay_tabs + * @param \DocuSign\eSign\Model\PolyLineOverlay[] $poly_line_overlay_tabs * * @return $this */ @@ -1216,7 +1216,7 @@ public function getSmartSectionTabs() /** * Sets smart_section_tabs * - * @param \DocuSign\eSign\Model\SmartSection[] $smart_section_tabs + * @param \DocuSign\eSign\Model\SmartSection[] $smart_section_tabs * * @return $this */ @@ -1264,7 +1264,7 @@ public function getTabGroups() /** * Sets tab_groups * - * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups + * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups * * @return $this */ @@ -1336,7 +1336,7 @@ public function getViewTabs() /** * Sets view_tabs * - * @param \DocuSign\eSign\Model\View[] $view_tabs + * @param \DocuSign\eSign\Model\View[] $view_tabs * * @return $this */ diff --git a/src/Model/TemplateAutoMatch.php b/src/Model/TemplateAutoMatch.php index 2969fa73..6badc648 100644 --- a/src/Model/TemplateAutoMatch.php +++ b/src/Model/TemplateAutoMatch.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auto_match'] = isset($data['auto_match']) ? $data['auto_match'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; @@ -231,7 +231,7 @@ public function getAutoMatch() /** * Sets auto_match * - * @param ?string $auto_match + * @param ?string $auto_match * * @return $this */ diff --git a/src/Model/TemplateAutoMatchList.php b/src/Model/TemplateAutoMatchList.php index 0a5ee5b6..a2e9463d 100644 --- a/src/Model/TemplateAutoMatchList.php +++ b/src/Model/TemplateAutoMatchList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['templates'] = isset($data['templates']) ? $data['templates'] : null; } @@ -219,7 +219,7 @@ public function getTemplates() /** * Sets templates * - * @param \DocuSign\eSign\Model\TemplateAutoMatch[] $templates + * @param \DocuSign\eSign\Model\TemplateAutoMatch[] $templates * * @return $this */ diff --git a/src/Model/TemplateCustomFields.php b/src/Model/TemplateCustomFields.php index 07d2fe0d..bc256b46 100644 --- a/src/Model/TemplateCustomFields.php +++ b/src/Model/TemplateCustomFields.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['list_custom_fields'] = isset($data['list_custom_fields']) ? $data['list_custom_fields'] : null; $this->container['text_custom_fields'] = isset($data['text_custom_fields']) ? $data['text_custom_fields'] : null; diff --git a/src/Model/TemplateDocumentVisibilityList.php b/src/Model/TemplateDocumentVisibilityList.php index 312fd214..846dba8a 100644 --- a/src/Model/TemplateDocumentVisibilityList.php +++ b/src/Model/TemplateDocumentVisibilityList.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_visibility'] = isset($data['document_visibility']) ? $data['document_visibility'] : null; } @@ -220,7 +220,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ diff --git a/src/Model/TemplateDocumentsResult.php b/src/Model/TemplateDocumentsResult.php index 1816ff38..9d84dbc2 100644 --- a/src/Model/TemplateDocumentsResult.php +++ b/src/Model/TemplateDocumentsResult.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['template_documents'] = isset($data['template_documents']) ? $data['template_documents'] : null; $this->container['template_id'] = isset($data['template_id']) ? $data['template_id'] : null; @@ -225,7 +225,7 @@ public function getTemplateDocuments() /** * Sets template_documents * - * @param \DocuSign\eSign\Model\EnvelopeDocument[] $template_documents + * @param \DocuSign\eSign\Model\EnvelopeDocument[] $template_documents * * @return $this */ diff --git a/src/Model/TemplateInformation.php b/src/Model/TemplateInformation.php index aadfc967..1ef9bb28 100644 --- a/src/Model/TemplateInformation.php +++ b/src/Model/TemplateInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['templates'] = isset($data['templates']) ? $data['templates'] : null; } @@ -219,7 +219,7 @@ public function getTemplates() /** * Sets templates * - * @param \DocuSign\eSign\Model\TemplateSummary[] $templates + * @param \DocuSign\eSign\Model\TemplateSummary[] $templates * * @return $this */ diff --git a/src/Model/TemplateMatch.php b/src/Model/TemplateMatch.php index 58168ff0..2090d4a8 100644 --- a/src/Model/TemplateMatch.php +++ b/src/Model/TemplateMatch.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_end_page'] = isset($data['document_end_page']) ? $data['document_end_page'] : null; $this->container['document_start_page'] = isset($data['document_start_page']) ? $data['document_start_page'] : null; @@ -231,7 +231,7 @@ public function getDocumentEndPage() /** * Sets document_end_page * - * @param ?string $document_end_page + * @param ?string $document_end_page * * @return $this */ @@ -255,7 +255,7 @@ public function getDocumentStartPage() /** * Sets document_start_page * - * @param ?string $document_start_page + * @param ?string $document_start_page * * @return $this */ @@ -279,7 +279,7 @@ public function getMatchPercentage() /** * Sets match_percentage * - * @param ?string $match_percentage + * @param ?string $match_percentage * * @return $this */ diff --git a/src/Model/TemplateNotificationRequest.php b/src/Model/TemplateNotificationRequest.php index d82e1443..f50f0785 100644 --- a/src/Model/TemplateNotificationRequest.php +++ b/src/Model/TemplateNotificationRequest.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expirations'] = isset($data['expirations']) ? $data['expirations'] : null; $this->container['password'] = isset($data['password']) ? $data['password'] : null; @@ -261,7 +261,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ diff --git a/src/Model/TemplateRecipients.php b/src/Model/TemplateRecipients.php index d41c339e..5938112d 100644 --- a/src/Model/TemplateRecipients.php +++ b/src/Model/TemplateRecipients.php @@ -225,9 +225,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agents'] = isset($data['agents']) ? $data['agents'] : null; $this->container['carbon_copies'] = isset($data['carbon_copies']) ? $data['carbon_copies'] : null; @@ -369,7 +369,7 @@ public function getCurrentRoutingOrder() /** * Sets current_routing_order * - * @param ?string $current_routing_order + * @param ?string $current_routing_order * * @return $this */ @@ -393,7 +393,7 @@ public function getEditors() /** * Sets editors * - * @param \DocuSign\eSign\Model\Editor[] $editors + * @param \DocuSign\eSign\Model\Editor[] $editors * * @return $this */ @@ -489,7 +489,7 @@ public function getNotaries() /** * Sets notaries * - * @param \DocuSign\eSign\Model\NotaryRecipient[] $notaries + * @param \DocuSign\eSign\Model\NotaryRecipient[] $notaries * * @return $this */ @@ -513,7 +513,7 @@ public function getParticipants() /** * Sets participants * - * @param \DocuSign\eSign\Model\Participant[] $participants + * @param \DocuSign\eSign\Model\Participant[] $participants * * @return $this */ @@ -561,7 +561,7 @@ public function getSeals() /** * Sets seals * - * @param \DocuSign\eSign\Model\SealSign[] $seals + * @param \DocuSign\eSign\Model\SealSign[] $seals * * @return $this */ @@ -609,7 +609,7 @@ public function getWitnesses() /** * Sets witnesses * - * @param \DocuSign\eSign\Model\Witness[] $witnesses + * @param \DocuSign\eSign\Model\Witness[] $witnesses * * @return $this */ diff --git a/src/Model/TemplateRole.php b/src/Model/TemplateRole.php index 0dd88068..fa4f1f64 100644 --- a/src/Model/TemplateRole.php +++ b/src/Model/TemplateRole.php @@ -236,9 +236,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -253,7 +253,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['additional_notifications'] = isset($data['additional_notifications']) ? $data['additional_notifications'] : null; @@ -334,7 +334,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -574,7 +574,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ diff --git a/src/Model/TemplateSharedItem.php b/src/Model/TemplateSharedItem.php index c82050ec..dc58ba07 100644 --- a/src/Model/TemplateSharedItem.php +++ b/src/Model/TemplateSharedItem.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['owner'] = isset($data['owner']) ? $data['owner'] : null; @@ -310,7 +310,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -358,7 +358,7 @@ public function getSharedGroups() /** * Sets shared_groups * - * @param \DocuSign\eSign\Model\MemberGroupSharedItem[] $shared_groups + * @param \DocuSign\eSign\Model\MemberGroupSharedItem[] $shared_groups * * @return $this */ @@ -382,7 +382,7 @@ public function getSharedUsers() /** * Sets shared_users * - * @param \DocuSign\eSign\Model\UserSharedItem[] $shared_users + * @param \DocuSign\eSign\Model\UserSharedItem[] $shared_users * * @return $this */ @@ -430,7 +430,7 @@ public function getTemplateName() /** * Sets template_name * - * @param ?string $template_name + * @param ?string $template_name * * @return $this */ diff --git a/src/Model/TemplateSummary.php b/src/Model/TemplateSummary.php index f795f125..348da6a2 100644 --- a/src/Model/TemplateSummary.php +++ b/src/Model/TemplateSummary.php @@ -196,9 +196,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['applied'] = isset($data['applied']) ? $data['applied'] : null; $this->container['document_id'] = isset($data['document_id']) ? $data['document_id'] : null; @@ -310,7 +310,7 @@ public function getDocumentName() /** * Sets document_name * - * @param ?string $document_name + * @param ?string $document_name * * @return $this */ @@ -358,7 +358,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -406,7 +406,7 @@ public function getTemplateMatch() /** * Sets template_match * - * @param \DocuSign\eSign\Model\TemplateMatch $template_match + * @param \DocuSign\eSign\Model\TemplateMatch $template_match * * @return $this */ @@ -430,7 +430,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ diff --git a/src/Model/TemplateTabs.php b/src/Model/TemplateTabs.php index 3b99eaf5..13a88571 100644 --- a/src/Model/TemplateTabs.php +++ b/src/Model/TemplateTabs.php @@ -350,9 +350,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -367,7 +367,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approve_tabs'] = isset($data['approve_tabs']) ? $data['approve_tabs'] : null; $this->container['checkbox_tabs'] = isset($data['checkbox_tabs']) ? $data['checkbox_tabs'] : null; @@ -495,7 +495,7 @@ public function getCommentThreadTabs() /** * Sets comment_thread_tabs * - * @param \DocuSign\eSign\Model\CommentThread[] $comment_thread_tabs + * @param \DocuSign\eSign\Model\CommentThread[] $comment_thread_tabs * * @return $this */ @@ -519,7 +519,7 @@ public function getCommissionCountyTabs() /** * Sets commission_county_tabs * - * @param \DocuSign\eSign\Model\CommissionCounty[] $commission_county_tabs + * @param \DocuSign\eSign\Model\CommissionCounty[] $commission_county_tabs * * @return $this */ @@ -543,7 +543,7 @@ public function getCommissionExpirationTabs() /** * Sets commission_expiration_tabs * - * @param \DocuSign\eSign\Model\CommissionExpiration[] $commission_expiration_tabs + * @param \DocuSign\eSign\Model\CommissionExpiration[] $commission_expiration_tabs * * @return $this */ @@ -567,7 +567,7 @@ public function getCommissionNumberTabs() /** * Sets commission_number_tabs * - * @param \DocuSign\eSign\Model\CommissionNumber[] $commission_number_tabs + * @param \DocuSign\eSign\Model\CommissionNumber[] $commission_number_tabs * * @return $this */ @@ -591,7 +591,7 @@ public function getCommissionStateTabs() /** * Sets commission_state_tabs * - * @param \DocuSign\eSign\Model\CommissionState[] $commission_state_tabs + * @param \DocuSign\eSign\Model\CommissionState[] $commission_state_tabs * * @return $this */ @@ -711,7 +711,7 @@ public function getDrawTabs() /** * Sets draw_tabs * - * @param \DocuSign\eSign\Model\Draw[] $draw_tabs + * @param \DocuSign\eSign\Model\Draw[] $draw_tabs * * @return $this */ @@ -951,7 +951,7 @@ public function getNotarizeTabs() /** * Sets notarize_tabs * - * @param \DocuSign\eSign\Model\Notarize[] $notarize_tabs + * @param \DocuSign\eSign\Model\Notarize[] $notarize_tabs * * @return $this */ @@ -975,7 +975,7 @@ public function getNotarySealTabs() /** * Sets notary_seal_tabs * - * @param \DocuSign\eSign\Model\NotarySeal[] $notary_seal_tabs + * @param \DocuSign\eSign\Model\NotarySeal[] $notary_seal_tabs * * @return $this */ @@ -1047,7 +1047,7 @@ public function getNumericalTabs() /** * Sets numerical_tabs * - * @param \DocuSign\eSign\Model\Numerical[] $numerical_tabs + * @param \DocuSign\eSign\Model\Numerical[] $numerical_tabs * * @return $this */ @@ -1071,7 +1071,7 @@ public function getPhoneNumberTabs() /** * Sets phone_number_tabs * - * @param \DocuSign\eSign\Model\PhoneNumber[] $phone_number_tabs + * @param \DocuSign\eSign\Model\PhoneNumber[] $phone_number_tabs * * @return $this */ @@ -1095,7 +1095,7 @@ public function getPolyLineOverlayTabs() /** * Sets poly_line_overlay_tabs * - * @param \DocuSign\eSign\Model\PolyLineOverlay[] $poly_line_overlay_tabs + * @param \DocuSign\eSign\Model\PolyLineOverlay[] $poly_line_overlay_tabs * * @return $this */ @@ -1215,7 +1215,7 @@ public function getSmartSectionTabs() /** * Sets smart_section_tabs * - * @param \DocuSign\eSign\Model\SmartSection[] $smart_section_tabs + * @param \DocuSign\eSign\Model\SmartSection[] $smart_section_tabs * * @return $this */ @@ -1263,7 +1263,7 @@ public function getTabGroups() /** * Sets tab_groups * - * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups + * @param \DocuSign\eSign\Model\TabGroup[] $tab_groups * * @return $this */ @@ -1335,7 +1335,7 @@ public function getViewTabs() /** * Sets view_tabs * - * @param \DocuSign\eSign\Model\View[] $view_tabs + * @param \DocuSign\eSign\Model\View[] $view_tabs * * @return $this */ diff --git a/src/Model/TemplateUpdateSummary.php b/src/Model/TemplateUpdateSummary.php index 745b406d..acfa52db 100644 --- a/src/Model/TemplateUpdateSummary.php +++ b/src/Model/TemplateUpdateSummary.php @@ -217,7 +217,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bulk_envelope_status'] = isset($data['bulk_envelope_status']) ? $data['bulk_envelope_status'] : null; $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; diff --git a/src/Model/TemplateViewRecipientSettings.php b/src/Model/TemplateViewRecipientSettings.php index e9dafea9..18c9416e 100644 --- a/src/Model/TemplateViewRecipientSettings.php +++ b/src/Model/TemplateViewRecipientSettings.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['show_contacts_list'] = isset($data['show_contacts_list']) ? $data['show_contacts_list'] : null; $this->container['show_edit_message'] = isset($data['show_edit_message']) ? $data['show_edit_message'] : null; @@ -231,7 +231,7 @@ public function getShowContactsList() /** * Sets show_contacts_list * - * @param ?string $show_contacts_list + * @param ?string $show_contacts_list * * @return $this */ @@ -255,7 +255,7 @@ public function getShowEditMessage() /** * Sets show_edit_message * - * @param ?string $show_edit_message + * @param ?string $show_edit_message * * @return $this */ @@ -279,7 +279,7 @@ public function getShowEditRecipients() /** * Sets show_edit_recipients * - * @param ?string $show_edit_recipients + * @param ?string $show_edit_recipients * * @return $this */ diff --git a/src/Model/TemplateViewRequest.php b/src/Model/TemplateViewRequest.php index cb46d639..82797f3c 100644 --- a/src/Model/TemplateViewRequest.php +++ b/src/Model/TemplateViewRequest.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['return_url'] = isset($data['return_url']) ? $data['return_url'] : null; $this->container['settings'] = isset($data['settings']) ? $data['settings'] : null; @@ -231,7 +231,7 @@ public function getReturnUrl() /** * Sets return_url * - * @param ?string $return_url + * @param ?string $return_url * * @return $this */ @@ -255,7 +255,7 @@ public function getSettings() /** * Sets settings * - * @param \DocuSign\eSign\Model\TemplateViewSettings $settings + * @param \DocuSign\eSign\Model\TemplateViewSettings $settings * * @return $this */ @@ -279,7 +279,7 @@ public function getViewAccess() /** * Sets view_access * - * @param ?string $view_access + * @param ?string $view_access * * @return $this */ diff --git a/src/Model/TemplateViewSettings.php b/src/Model/TemplateViewSettings.php index 2dd387a8..f6a58844 100644 --- a/src/Model/TemplateViewSettings.php +++ b/src/Model/TemplateViewSettings.php @@ -210,9 +210,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -227,7 +227,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['back_button_action'] = isset($data['back_button_action']) ? $data['back_button_action'] : null; $this->container['document_settings'] = isset($data['document_settings']) ? $data['document_settings'] : null; @@ -279,7 +279,7 @@ public function getBackButtonAction() /** * Sets back_button_action * - * @param ?string $back_button_action + * @param ?string $back_button_action * * @return $this */ @@ -303,7 +303,7 @@ public function getDocumentSettings() /** * Sets document_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewDocumentSettings $document_settings + * @param \DocuSign\eSign\Model\EnvelopeViewDocumentSettings $document_settings * * @return $this */ @@ -327,7 +327,7 @@ public function getEnvelopeCustomFieldSettings() /** * Sets envelope_custom_field_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewEnvelopeCustomFieldSettings $envelope_custom_field_settings + * @param \DocuSign\eSign\Model\EnvelopeViewEnvelopeCustomFieldSettings $envelope_custom_field_settings * * @return $this */ @@ -351,7 +351,7 @@ public function getLockToken() /** * Sets lock_token * - * @param ?string $lock_token + * @param ?string $lock_token * * @return $this */ @@ -375,7 +375,7 @@ public function getRecipientSettings() /** * Sets recipient_settings * - * @param \DocuSign\eSign\Model\TemplateViewRecipientSettings $recipient_settings + * @param \DocuSign\eSign\Model\TemplateViewRecipientSettings $recipient_settings * * @return $this */ @@ -399,7 +399,7 @@ public function getShowAdvancedOptions() /** * Sets show_advanced_options * - * @param ?string $show_advanced_options + * @param ?string $show_advanced_options * * @return $this */ @@ -423,7 +423,7 @@ public function getShowBackButton() /** * Sets show_back_button * - * @param ?string $show_back_button + * @param ?string $show_back_button * * @return $this */ @@ -447,7 +447,7 @@ public function getShowDiscardAction() /** * Sets show_discard_action * - * @param ?string $show_discard_action + * @param ?string $show_discard_action * * @return $this */ @@ -471,7 +471,7 @@ public function getShowHeaderActions() /** * Sets show_header_actions * - * @param ?string $show_header_actions + * @param ?string $show_header_actions * * @return $this */ @@ -495,7 +495,7 @@ public function getStartingScreen() /** * Sets starting_screen * - * @param ?string $starting_screen + * @param ?string $starting_screen * * @return $this */ @@ -519,7 +519,7 @@ public function getTaggerSettings() /** * Sets tagger_settings * - * @param \DocuSign\eSign\Model\EnvelopeViewTaggerSettings $tagger_settings + * @param \DocuSign\eSign\Model\EnvelopeViewTaggerSettings $tagger_settings * * @return $this */ diff --git a/src/Model/Text.php b/src/Model/Text.php index faf00ea4..ecba8031 100644 --- a/src/Model/Text.php +++ b/src/Model/Text.php @@ -786,9 +786,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -803,7 +803,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -970,7 +970,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -994,7 +994,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -1018,7 +1018,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1306,7 +1306,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1546,7 +1546,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1570,7 +1570,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1738,7 +1738,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1930,7 +1930,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -2098,7 +2098,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -2146,7 +2146,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -2194,7 +2194,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2578,7 +2578,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2770,7 +2770,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -3082,7 +3082,7 @@ public function getShareToRecipients() /** * Sets share_to_recipients * - * @param ?string $share_to_recipients + * @param ?string $share_to_recipients * * @return $this */ @@ -3154,7 +3154,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -3226,7 +3226,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -3250,7 +3250,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -3394,7 +3394,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -3442,7 +3442,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -3586,7 +3586,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -3826,7 +3826,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/TextCustomField.php b/src/Model/TextCustomField.php index 1570eeaa..1aa22a7c 100644 --- a/src/Model/TextCustomField.php +++ b/src/Model/TextCustomField.php @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['configuration_type'] = isset($data['configuration_type']) ? $data['configuration_type'] : null; $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; diff --git a/src/Model/TimeStampField.php b/src/Model/TimeStampField.php index 23018c04..4fa75256 100644 --- a/src/Model/TimeStampField.php +++ b/src/Model/TimeStampField.php @@ -168,9 +168,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['document_security_store'] = isset($data['document_security_store']) ? $data['document_security_store'] : null; $this->container['max_time_stamp_signature_length'] = isset($data['max_time_stamp_signature_length']) ? $data['max_time_stamp_signature_length'] : null; @@ -253,7 +253,7 @@ public function getMaxTimeStampSignatureLength() /** * Sets max_time_stamp_signature_length * - * @param ?string $max_time_stamp_signature_length + * @param ?string $max_time_stamp_signature_length * * @return $this */ @@ -277,7 +277,7 @@ public function getTimeStampFieldName() /** * Sets time_stamp_field_name * - * @param ?string $time_stamp_field_name + * @param ?string $time_stamp_field_name * * @return $this */ diff --git a/src/Model/Title.php b/src/Model/Title.php index 169e0622..cba6aec0 100644 --- a/src/Model/Title.php +++ b/src/Model/Title.php @@ -713,7 +713,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; diff --git a/src/Model/TspHealthCheckRequest.php b/src/Model/TspHealthCheckRequest.php index 7f3242f4..494ab6e5 100644 --- a/src/Model/TspHealthCheckRequest.php +++ b/src/Model/TspHealthCheckRequest.php @@ -178,9 +178,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['app_version'] = isset($data['app_version']) ? $data['app_version'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; @@ -241,7 +241,7 @@ public function getAppVersion() /** * Sets app_version * - * @param ?string $app_version + * @param ?string $app_version * * @return $this */ @@ -265,7 +265,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -289,7 +289,7 @@ public function getError() /** * Sets error * - * @param ?string $error + * @param ?string $error * * @return $this */ @@ -337,7 +337,7 @@ public function getStatusDescription() /** * Sets status_description * - * @param \DocuSign\eSign\Model\TspHealthCheckStatusDescription[] $status_description + * @param \DocuSign\eSign\Model\TspHealthCheckStatusDescription[] $status_description * * @return $this */ diff --git a/src/Model/TspHealthCheckStatusDescription.php b/src/Model/TspHealthCheckStatusDescription.php index 8cd65526..70608978 100644 --- a/src/Model/TspHealthCheckStatusDescription.php +++ b/src/Model/TspHealthCheckStatusDescription.php @@ -183,9 +183,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['error'] = isset($data['error']) ? $data['error'] : null; @@ -247,7 +247,7 @@ public function getDescription() /** * Sets description * - * @param ?string $description + * @param ?string $description * * @return $this */ @@ -271,7 +271,7 @@ public function getError() /** * Sets error * - * @param ?string $error + * @param ?string $error * * @return $this */ @@ -295,7 +295,7 @@ public function getHostname() /** * Sets hostname * - * @param ?string $hostname + * @param ?string $hostname * * @return $this */ @@ -319,7 +319,7 @@ public function getResponseSeconds() /** * Sets response_seconds * - * @param ?string $response_seconds + * @param ?string $response_seconds * * @return $this */ @@ -367,7 +367,7 @@ public function getType() /** * Sets type * - * @param ?string $type + * @param ?string $type * * @return $this */ diff --git a/src/Model/UpdateTransactionRequest.php b/src/Model/UpdateTransactionRequest.php index 6155e479..2c6f70e9 100644 --- a/src/Model/UpdateTransactionRequest.php +++ b/src/Model/UpdateTransactionRequest.php @@ -168,9 +168,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['message'] = isset($data['message']) ? $data['message'] : null; @@ -229,7 +229,7 @@ public function getCode() /** * Sets code * - * @param ?string $code + * @param ?string $code * * @return $this */ @@ -253,7 +253,7 @@ public function getMessage() /** * Sets message * - * @param ?string $message + * @param ?string $message * * @return $this */ diff --git a/src/Model/UpdateTransactionResponse.php b/src/Model/UpdateTransactionResponse.php index c17b6664..f6a8cbf7 100644 --- a/src/Model/UpdateTransactionResponse.php +++ b/src/Model/UpdateTransactionResponse.php @@ -175,7 +175,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['redirection_url'] = isset($data['redirection_url']) ? $data['redirection_url'] : null; } diff --git a/src/Model/UsageHistory.php b/src/Model/UsageHistory.php index 21d95911..19443f11 100644 --- a/src/Model/UsageHistory.php +++ b/src/Model/UsageHistory.php @@ -176,9 +176,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -193,7 +193,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['last_sent_date_time'] = isset($data['last_sent_date_time']) ? $data['last_sent_date_time'] : null; $this->container['last_signed_date_time'] = isset($data['last_signed_date_time']) ? $data['last_signed_date_time'] : null; diff --git a/src/Model/User.php b/src/Model/User.php index 0747741f..2ff8afb4 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -183,9 +183,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cell_phone_number'] = isset($data['cell_phone_number']) ? $data['cell_phone_number'] : null; $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; @@ -247,7 +247,7 @@ public function getCellPhoneNumber() /** * Sets cell_phone_number * - * @param ?string $cell_phone_number + * @param ?string $cell_phone_number * * @return $this */ @@ -271,7 +271,7 @@ public function getCountryCode() /** * Sets country_code * - * @param ?string $country_code + * @param ?string $country_code * * @return $this */ @@ -295,7 +295,7 @@ public function getCredentials() /** * Sets credentials * - * @param \DocuSign\eSign\Model\Credential[] $credentials + * @param \DocuSign\eSign\Model\Credential[] $credentials * * @return $this */ @@ -319,7 +319,7 @@ public function getDisplayName() /** * Sets display_name * - * @param ?string $display_name + * @param ?string $display_name * * @return $this */ @@ -343,7 +343,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -367,7 +367,7 @@ public function getExternalClaims() /** * Sets external_claims * - * @param \DocuSign\eSign\Model\ExternalClaim[] $external_claims + * @param \DocuSign\eSign\Model\ExternalClaim[] $external_claims * * @return $this */ diff --git a/src/Model/UserAccountManagementGranularInformation.php b/src/Model/UserAccountManagementGranularInformation.php index 0d1fc6b7..09e91ea8 100644 --- a/src/Model/UserAccountManagementGranularInformation.php +++ b/src/Model/UserAccountManagementGranularInformation.php @@ -291,9 +291,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -308,7 +308,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['can_manage_account_security_settings'] = isset($data['can_manage_account_security_settings']) ? $data['can_manage_account_security_settings'] : null; $this->container['can_manage_account_security_settings_metadata'] = isset($data['can_manage_account_security_settings_metadata']) ? $data['can_manage_account_security_settings_metadata'] : null; @@ -376,7 +376,7 @@ public function getCanManageAccountSecuritySettings() /** * Sets can_manage_account_security_settings * - * @param ?string $can_manage_account_security_settings + * @param ?string $can_manage_account_security_settings * * @return $this */ @@ -400,7 +400,7 @@ public function getCanManageAccountSecuritySettingsMetadata() /** * Sets can_manage_account_security_settings_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_account_security_settings_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_account_security_settings_metadata * * @return $this */ @@ -424,7 +424,7 @@ public function getCanManageAccountSettings() /** * Sets can_manage_account_settings * - * @param ?string $can_manage_account_settings + * @param ?string $can_manage_account_settings * * @return $this */ @@ -448,7 +448,7 @@ public function getCanManageAccountSettingsMetadata() /** * Sets can_manage_account_settings_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_account_settings_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_account_settings_metadata * * @return $this */ @@ -472,7 +472,7 @@ public function getCanManageAdmins() /** * Sets can_manage_admins * - * @param ?string $can_manage_admins + * @param ?string $can_manage_admins * * @return $this */ @@ -520,7 +520,7 @@ public function getCanManageConnect() /** * Sets can_manage_connect * - * @param ?string $can_manage_connect + * @param ?string $can_manage_connect * * @return $this */ @@ -544,7 +544,7 @@ public function getCanManageConnectMetadata() /** * Sets can_manage_connect_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_connect_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_connect_metadata * * @return $this */ @@ -568,7 +568,7 @@ public function getCanManageDocumentRetention() /** * Sets can_manage_document_retention * - * @param ?string $can_manage_document_retention + * @param ?string $can_manage_document_retention * * @return $this */ @@ -592,7 +592,7 @@ public function getCanManageDocumentRetentionMetadata() /** * Sets can_manage_document_retention_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_document_retention_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_document_retention_metadata * * @return $this */ @@ -616,7 +616,7 @@ public function getCanManageEnvelopeTransfer() /** * Sets can_manage_envelope_transfer * - * @param ?string $can_manage_envelope_transfer + * @param ?string $can_manage_envelope_transfer * * @return $this */ @@ -640,7 +640,7 @@ public function getCanManageEnvelopeTransferMetadata() /** * Sets can_manage_envelope_transfer_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_envelope_transfer_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_envelope_transfer_metadata * * @return $this */ @@ -664,7 +664,7 @@ public function getCanManageGroupsButNotUsers() /** * Sets can_manage_groups_but_not_users * - * @param ?string $can_manage_groups_but_not_users + * @param ?string $can_manage_groups_but_not_users * * @return $this */ @@ -688,7 +688,7 @@ public function getCanManageGroupsButNotUsersMetadata() /** * Sets can_manage_groups_but_not_users_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_groups_but_not_users_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_groups_but_not_users_metadata * * @return $this */ @@ -712,7 +712,7 @@ public function getCanManageJointAgreements() /** * Sets can_manage_joint_agreements * - * @param ?string $can_manage_joint_agreements + * @param ?string $can_manage_joint_agreements * * @return $this */ @@ -736,7 +736,7 @@ public function getCanManageJointAgreementsMetadata() /** * Sets can_manage_joint_agreements_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_joint_agreements_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_joint_agreements_metadata * * @return $this */ @@ -760,7 +760,7 @@ public function getCanManageReporting() /** * Sets can_manage_reporting * - * @param ?string $can_manage_reporting + * @param ?string $can_manage_reporting * * @return $this */ @@ -784,7 +784,7 @@ public function getCanManageReportingMetadata() /** * Sets can_manage_reporting_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_reporting_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_reporting_metadata * * @return $this */ @@ -808,7 +808,7 @@ public function getCanManageSharing() /** * Sets can_manage_sharing * - * @param ?string $can_manage_sharing + * @param ?string $can_manage_sharing * * @return $this */ @@ -856,7 +856,7 @@ public function getCanManageSigningGroups() /** * Sets can_manage_signing_groups * - * @param ?string $can_manage_signing_groups + * @param ?string $can_manage_signing_groups * * @return $this */ @@ -880,7 +880,7 @@ public function getCanManageSigningGroupsMetadata() /** * Sets can_manage_signing_groups_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_signing_groups_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_signing_groups_metadata * * @return $this */ @@ -904,7 +904,7 @@ public function getCanManageStamps() /** * Sets can_manage_stamps * - * @param ?string $can_manage_stamps + * @param ?string $can_manage_stamps * * @return $this */ @@ -928,7 +928,7 @@ public function getCanManageStampsMetadata() /** * Sets can_manage_stamps_metadata * - * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_stamps_metadata + * @param \DocuSign\eSign\Model\SettingsMetadata $can_manage_stamps_metadata * * @return $this */ @@ -952,7 +952,7 @@ public function getCanManageUsers() /** * Sets can_manage_users * - * @param ?string $can_manage_users + * @param ?string $can_manage_users * * @return $this */ @@ -1000,7 +1000,7 @@ public function getCanViewUsers() /** * Sets can_view_users * - * @param ?string $can_view_users + * @param ?string $can_view_users * * @return $this */ diff --git a/src/Model/UserAuthorization.php b/src/Model/UserAuthorization.php index 746fa8aa..997bace8 100644 --- a/src/Model/UserAuthorization.php +++ b/src/Model/UserAuthorization.php @@ -205,9 +205,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -222,7 +222,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agent_user'] = isset($data['agent_user']) ? $data['agent_user'] : null; $this->container['authorization_id'] = isset($data['authorization_id']) ? $data['authorization_id'] : null; @@ -273,7 +273,7 @@ public function getAgentUser() /** * Sets agent_user * - * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user + * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user * * @return $this */ @@ -297,7 +297,7 @@ public function getAuthorizationId() /** * Sets authorization_id * - * @param ?string $authorization_id + * @param ?string $authorization_id * * @return $this */ @@ -321,7 +321,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ @@ -345,7 +345,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param ?string $created_by + * @param ?string $created_by * * @return $this */ @@ -369,7 +369,7 @@ public function getEndDate() /** * Sets end_date * - * @param ?string $end_date + * @param ?string $end_date * * @return $this */ @@ -393,7 +393,7 @@ public function getModified() /** * Sets modified * - * @param ?string $modified + * @param ?string $modified * * @return $this */ @@ -417,7 +417,7 @@ public function getModifiedBy() /** * Sets modified_by * - * @param ?string $modified_by + * @param ?string $modified_by * * @return $this */ @@ -441,7 +441,7 @@ public function getPermission() /** * Sets permission * - * @param ?string $permission + * @param ?string $permission * * @return $this */ @@ -465,7 +465,7 @@ public function getPrincipalUser() /** * Sets principal_user * - * @param \DocuSign\eSign\Model\AuthorizationUser $principal_user + * @param \DocuSign\eSign\Model\AuthorizationUser $principal_user * * @return $this */ @@ -489,7 +489,7 @@ public function getStartDate() /** * Sets start_date * - * @param ?string $start_date + * @param ?string $start_date * * @return $this */ diff --git a/src/Model/UserAuthorizationCreateRequest.php b/src/Model/UserAuthorizationCreateRequest.php index 29910f3a..38b03b9f 100644 --- a/src/Model/UserAuthorizationCreateRequest.php +++ b/src/Model/UserAuthorizationCreateRequest.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agent_user'] = isset($data['agent_user']) ? $data['agent_user'] : null; $this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null; @@ -237,7 +237,7 @@ public function getAgentUser() /** * Sets agent_user * - * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user + * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user * * @return $this */ @@ -261,7 +261,7 @@ public function getEndDate() /** * Sets end_date * - * @param ?string $end_date + * @param ?string $end_date * * @return $this */ @@ -285,7 +285,7 @@ public function getPermission() /** * Sets permission * - * @param ?string $permission + * @param ?string $permission * * @return $this */ @@ -309,7 +309,7 @@ public function getStartDate() /** * Sets start_date * - * @param ?string $start_date + * @param ?string $start_date * * @return $this */ diff --git a/src/Model/UserAuthorizationCreateRequestWithId.php b/src/Model/UserAuthorizationCreateRequestWithId.php index 7da4c160..926647fc 100644 --- a/src/Model/UserAuthorizationCreateRequestWithId.php +++ b/src/Model/UserAuthorizationCreateRequestWithId.php @@ -180,9 +180,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -197,7 +197,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agent_user'] = isset($data['agent_user']) ? $data['agent_user'] : null; $this->container['authorization_id'] = isset($data['authorization_id']) ? $data['authorization_id'] : null; @@ -243,7 +243,7 @@ public function getAgentUser() /** * Sets agent_user * - * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user + * @param \DocuSign\eSign\Model\AuthorizationUser $agent_user * * @return $this */ @@ -267,7 +267,7 @@ public function getAuthorizationId() /** * Sets authorization_id * - * @param ?string $authorization_id + * @param ?string $authorization_id * * @return $this */ @@ -291,7 +291,7 @@ public function getEndDate() /** * Sets end_date * - * @param ?string $end_date + * @param ?string $end_date * * @return $this */ @@ -315,7 +315,7 @@ public function getPermission() /** * Sets permission * - * @param ?string $permission + * @param ?string $permission * * @return $this */ @@ -339,7 +339,7 @@ public function getStartDate() /** * Sets start_date * - * @param ?string $start_date + * @param ?string $start_date * * @return $this */ diff --git a/src/Model/UserAuthorizationIdWithStatus.php b/src/Model/UserAuthorizationIdWithStatus.php index c5d8a012..f4bbfcf7 100644 --- a/src/Model/UserAuthorizationIdWithStatus.php +++ b/src/Model/UserAuthorizationIdWithStatus.php @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorization_id'] = isset($data['authorization_id']) ? $data['authorization_id'] : null; $this->container['error_message'] = isset($data['error_message']) ? $data['error_message'] : null; diff --git a/src/Model/UserAuthorizationUpdateRequest.php b/src/Model/UserAuthorizationUpdateRequest.php index e0bcabd0..5b830dd1 100644 --- a/src/Model/UserAuthorizationUpdateRequest.php +++ b/src/Model/UserAuthorizationUpdateRequest.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null; $this->container['start_date'] = isset($data['start_date']) ? $data['start_date'] : null; @@ -225,7 +225,7 @@ public function getEndDate() /** * Sets end_date * - * @param ?string $end_date + * @param ?string $end_date * * @return $this */ @@ -249,7 +249,7 @@ public function getStartDate() /** * Sets start_date * - * @param ?string $start_date + * @param ?string $start_date * * @return $this */ diff --git a/src/Model/UserAuthorizationWithStatus.php b/src/Model/UserAuthorizationWithStatus.php index 6f3f5ac2..58a0f36f 100644 --- a/src/Model/UserAuthorizationWithStatus.php +++ b/src/Model/UserAuthorizationWithStatus.php @@ -170,9 +170,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -187,7 +187,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorization'] = isset($data['authorization']) ? $data['authorization'] : null; $this->container['error_message'] = isset($data['error_message']) ? $data['error_message'] : null; @@ -231,7 +231,7 @@ public function getAuthorization() /** * Sets authorization * - * @param \DocuSign\eSign\Model\UserAuthorization $authorization + * @param \DocuSign\eSign\Model\UserAuthorization $authorization * * @return $this */ @@ -255,7 +255,7 @@ public function getErrorMessage() /** * Sets error_message * - * @param ?string $error_message + * @param ?string $error_message * * @return $this */ @@ -279,7 +279,7 @@ public function getSuccess() /** * Sets success * - * @param ?string $success + * @param ?string $success * * @return $this */ diff --git a/src/Model/UserAuthorizations.php b/src/Model/UserAuthorizations.php index 27cbbdde..0afa9ad7 100644 --- a/src/Model/UserAuthorizations.php +++ b/src/Model/UserAuthorizations.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorizations'] = isset($data['authorizations']) ? $data['authorizations'] : null; $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; @@ -255,7 +255,7 @@ public function getAuthorizations() /** * Sets authorizations * - * @param \DocuSign\eSign\Model\UserAuthorization[] $authorizations + * @param \DocuSign\eSign\Model\UserAuthorization[] $authorizations * * @return $this */ diff --git a/src/Model/UserAuthorizationsDeleteRequest.php b/src/Model/UserAuthorizationsDeleteRequest.php index e0772543..717d1dbc 100644 --- a/src/Model/UserAuthorizationsDeleteRequest.php +++ b/src/Model/UserAuthorizationsDeleteRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorizations'] = isset($data['authorizations']) ? $data['authorizations'] : null; } @@ -219,7 +219,7 @@ public function getAuthorizations() /** * Sets authorizations * - * @param ?string[] $authorizations + * @param ?string[] $authorizations * * @return $this */ diff --git a/src/Model/UserAuthorizationsDeleteResponse.php b/src/Model/UserAuthorizationsDeleteResponse.php index bca9f508..15eac5de 100644 --- a/src/Model/UserAuthorizationsDeleteResponse.php +++ b/src/Model/UserAuthorizationsDeleteResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; } @@ -219,7 +219,7 @@ public function getResults() /** * Sets results * - * @param \DocuSign\eSign\Model\UserAuthorizationIdWithStatus[] $results + * @param \DocuSign\eSign\Model\UserAuthorizationIdWithStatus[] $results * * @return $this */ diff --git a/src/Model/UserAuthorizationsRequest.php b/src/Model/UserAuthorizationsRequest.php index 2c1cac6b..d3e6208c 100644 --- a/src/Model/UserAuthorizationsRequest.php +++ b/src/Model/UserAuthorizationsRequest.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['authorizations'] = isset($data['authorizations']) ? $data['authorizations'] : null; } @@ -219,7 +219,7 @@ public function getAuthorizations() /** * Sets authorizations * - * @param \DocuSign\eSign\Model\UserAuthorizationCreateRequestWithId[] $authorizations + * @param \DocuSign\eSign\Model\UserAuthorizationCreateRequestWithId[] $authorizations * * @return $this */ diff --git a/src/Model/UserAuthorizationsResponse.php b/src/Model/UserAuthorizationsResponse.php index e44c281c..6521efee 100644 --- a/src/Model/UserAuthorizationsResponse.php +++ b/src/Model/UserAuthorizationsResponse.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; } @@ -219,7 +219,7 @@ public function getResults() /** * Sets results * - * @param \DocuSign\eSign\Model\UserAuthorizationWithStatus[] $results + * @param \DocuSign\eSign\Model\UserAuthorizationWithStatus[] $results * * @return $this */ diff --git a/src/Model/UserInfo.php b/src/Model/UserInfo.php index fb491bf1..b1a61283 100644 --- a/src/Model/UserInfo.php +++ b/src/Model/UserInfo.php @@ -225,9 +225,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -242,7 +242,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; @@ -321,7 +321,7 @@ public function getAccountName() /** * Sets account_name * - * @param ?string $account_name + * @param ?string $account_name * * @return $this */ @@ -345,7 +345,7 @@ public function getActivationAccessCode() /** * Sets activation_access_code * - * @param ?string $activation_access_code + * @param ?string $activation_access_code * * @return $this */ @@ -369,7 +369,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -417,7 +417,7 @@ public function getIpAddress() /** * Sets ip_address * - * @param ?string $ip_address + * @param ?string $ip_address * * @return $this */ @@ -441,7 +441,7 @@ public function getLoginStatus() /** * Sets login_status * - * @param ?string $login_status + * @param ?string $login_status * * @return $this */ @@ -465,7 +465,7 @@ public function getMembershipId() /** * Sets membership_id * - * @param ?string $membership_id + * @param ?string $membership_id * * @return $this */ @@ -489,7 +489,7 @@ public function getSendActivationEmail() /** * Sets send_activation_email * - * @param ?string $send_activation_email + * @param ?string $send_activation_email * * @return $this */ @@ -513,7 +513,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -537,7 +537,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -561,7 +561,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ @@ -585,7 +585,7 @@ public function getUserStatus() /** * Sets user_status * - * @param ?string $user_status + * @param ?string $user_status * * @return $this */ @@ -609,7 +609,7 @@ public function getUserType() /** * Sets user_type * - * @param ?string $user_type + * @param ?string $user_type * * @return $this */ diff --git a/src/Model/UserInfoList.php b/src/Model/UserInfoList.php index 9795221e..68982e4d 100644 --- a/src/Model/UserInfoList.php +++ b/src/Model/UserInfoList.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['users'] = isset($data['users']) ? $data['users'] : null; } @@ -219,7 +219,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInfo[] $users + * @param \DocuSign\eSign\Model\UserInfo[] $users * * @return $this */ diff --git a/src/Model/UserInfoResponse.php b/src/Model/UserInfoResponse.php index 247cb441..9d523820 100644 --- a/src/Model/UserInfoResponse.php +++ b/src/Model/UserInfoResponse.php @@ -178,9 +178,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['envelope_id'] = isset($data['envelope_id']) ? $data['envelope_id'] : null; $this->container['language'] = isset($data['language']) ? $data['language'] : null; @@ -265,7 +265,7 @@ public function getLanguage() /** * Sets language * - * @param ?string $language + * @param ?string $language * * @return $this */ diff --git a/src/Model/UserInformation.php b/src/Model/UserInformation.php index 53deb61a..60b6680b 100644 --- a/src/Model/UserInformation.php +++ b/src/Model/UserInformation.php @@ -396,9 +396,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -413,7 +413,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activation_access_code'] = isset($data['activation_access_code']) ? $data['activation_access_code'] : null; $this->container['company'] = isset($data['company']) ? $data['company'] : null; @@ -526,7 +526,7 @@ public function getCompany() /** * Sets company * - * @param ?string $company + * @param ?string $company * * @return $this */ @@ -550,7 +550,7 @@ public function getConnectConfigurations() /** * Sets connect_configurations * - * @param \DocuSign\eSign\Model\ConnectUserObject[] $connect_configurations + * @param \DocuSign\eSign\Model\ConnectUserObject[] $connect_configurations * * @return $this */ @@ -574,7 +574,7 @@ public function getCountryCode() /** * Sets country_code * - * @param ?string $country_code + * @param ?string $country_code * * @return $this */ @@ -646,7 +646,7 @@ public function getDefaultAccountId() /** * Sets default_account_id * - * @param ?string $default_account_id + * @param ?string $default_account_id * * @return $this */ @@ -670,7 +670,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -814,7 +814,7 @@ public function getHasRemoteNotary() /** * Sets has_remote_notary * - * @param ?bool $has_remote_notary + * @param ?bool $has_remote_notary * * @return $this */ @@ -910,7 +910,7 @@ public function getIsAlternateAdmin() /** * Sets is_alternate_admin * - * @param ?string $is_alternate_admin + * @param ?string $is_alternate_admin * * @return $this */ @@ -934,7 +934,7 @@ public function getIsManagedByScim() /** * Sets is_managed_by_scim * - * @param ?string $is_managed_by_scim + * @param ?string $is_managed_by_scim * * @return $this */ @@ -958,7 +958,7 @@ public function getIsMembershipManagedByScim() /** * Sets is_membership_managed_by_scim * - * @param ?string $is_membership_managed_by_scim + * @param ?string $is_membership_managed_by_scim * * @return $this */ @@ -982,7 +982,7 @@ public function getIsNarEnabled() /** * Sets is_nar_enabled * - * @param ?string $is_nar_enabled + * @param ?string $is_nar_enabled * * @return $this */ @@ -1006,7 +1006,7 @@ public function getJobTitle() /** * Sets job_title * - * @param ?string $job_title + * @param ?string $job_title * * @return $this */ @@ -1078,7 +1078,7 @@ public function getLicenseStatus() /** * Sets license_status * - * @param ?string $license_status + * @param ?string $license_status * * @return $this */ @@ -1102,7 +1102,7 @@ public function getLicenseType() /** * Sets license_type * - * @param ?string $license_type + * @param ?string $license_type * * @return $this */ @@ -1174,7 +1174,7 @@ public function getPassword() /** * Sets password * - * @param ?string $password + * @param ?string $password * * @return $this */ @@ -1198,7 +1198,7 @@ public function getPasswordExpiration() /** * Sets password_expiration * - * @param ?string $password_expiration + * @param ?string $password_expiration * * @return $this */ @@ -1222,7 +1222,7 @@ public function getPermissionProfileId() /** * Sets permission_profile_id * - * @param ?string $permission_profile_id + * @param ?string $permission_profile_id * * @return $this */ @@ -1246,7 +1246,7 @@ public function getPermissionProfileName() /** * Sets permission_profile_name * - * @param ?string $permission_profile_name + * @param ?string $permission_profile_name * * @return $this */ @@ -1270,7 +1270,7 @@ public function getProfileImageUri() /** * Sets profile_image_uri * - * @param ?string $profile_image_uri + * @param ?string $profile_image_uri * * @return $this */ @@ -1294,7 +1294,7 @@ public function getSendActivationEmail() /** * Sets send_activation_email * - * @param ?string $send_activation_email + * @param ?string $send_activation_email * * @return $this */ @@ -1366,7 +1366,7 @@ public function getSubscribe() /** * Sets subscribe * - * @param ?string $subscribe + * @param ?string $subscribe * * @return $this */ @@ -1438,7 +1438,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -1462,7 +1462,7 @@ public function getUserAddedToAccountDateTime() /** * Sets user_added_to_account_date_time * - * @param ?string $user_added_to_account_date_time + * @param ?string $user_added_to_account_date_time * * @return $this */ @@ -1486,7 +1486,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -1510,7 +1510,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ @@ -1534,7 +1534,7 @@ public function getUserProfileLastModifiedDate() /** * Sets user_profile_last_modified_date * - * @param ?string $user_profile_last_modified_date + * @param ?string $user_profile_last_modified_date * * @return $this */ @@ -1582,7 +1582,7 @@ public function getUserStatus() /** * Sets user_status * - * @param ?string $user_status + * @param ?string $user_status * * @return $this */ @@ -1606,7 +1606,7 @@ public function getUserType() /** * Sets user_type * - * @param ?string $user_type + * @param ?string $user_type * * @return $this */ @@ -1630,7 +1630,7 @@ public function getWorkAddress() /** * Sets work_address * - * @param \DocuSign\eSign\Model\AddressInformation $work_address + * @param \DocuSign\eSign\Model\AddressInformation $work_address * * @return $this */ diff --git a/src/Model/UserInformationList.php b/src/Model/UserInformationList.php index 2b337f6f..2a573aff 100644 --- a/src/Model/UserInformationList.php +++ b/src/Model/UserInformationList.php @@ -191,9 +191,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -208,7 +208,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -400,7 +400,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInformation[] $users + * @param \DocuSign\eSign\Model\UserInformation[] $users * * @return $this */ diff --git a/src/Model/UserPasswordInformation.php b/src/Model/UserPasswordInformation.php index 9329343e..a5287422 100644 --- a/src/Model/UserPasswordInformation.php +++ b/src/Model/UserPasswordInformation.php @@ -175,9 +175,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -192,7 +192,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['current_password'] = isset($data['current_password']) ? $data['current_password'] : null; $this->container['email'] = isset($data['email']) ? $data['email'] : null; diff --git a/src/Model/UserPasswordRules.php b/src/Model/UserPasswordRules.php index 6c302440..d2a06b52 100644 --- a/src/Model/UserPasswordRules.php +++ b/src/Model/UserPasswordRules.php @@ -166,9 +166,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -183,7 +183,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['password_rules'] = isset($data['password_rules']) ? $data['password_rules'] : null; $this->container['user_id'] = isset($data['user_id']) ? $data['user_id'] : null; @@ -250,7 +250,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/UserProfile.php b/src/Model/UserProfile.php index 6152dc75..5a4d9853 100644 --- a/src/Model/UserProfile.php +++ b/src/Model/UserProfile.php @@ -215,9 +215,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -232,7 +232,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['address'] = isset($data['address']) ? $data['address'] : null; $this->container['authentication_methods'] = isset($data['authentication_methods']) ? $data['authentication_methods'] : null; @@ -453,7 +453,7 @@ public function getProfileImageUri() /** * Sets profile_image_uri * - * @param ?string $profile_image_uri + * @param ?string $profile_image_uri * * @return $this */ @@ -477,7 +477,7 @@ public function getTitle() /** * Sets title * - * @param ?string $title + * @param ?string $title * * @return $this */ @@ -525,7 +525,7 @@ public function getUserDetails() /** * Sets user_details * - * @param \DocuSign\eSign\Model\UserInformation $user_details + * @param \DocuSign\eSign\Model\UserInformation $user_details * * @return $this */ @@ -549,7 +549,7 @@ public function getUserProfileLastModifiedDate() /** * Sets user_profile_last_modified_date * - * @param ?string $user_profile_last_modified_date + * @param ?string $user_profile_last_modified_date * * @return $this */ diff --git a/src/Model/UserSettingsInformation.php b/src/Model/UserSettingsInformation.php index e1965c0d..daf67f81 100644 --- a/src/Model/UserSettingsInformation.php +++ b/src/Model/UserSettingsInformation.php @@ -918,7 +918,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_agreements_access_type'] = isset($data['account_agreements_access_type']) ? $data['account_agreements_access_type'] : null; $this->container['account_agreements_access_type_metadata'] = isset($data['account_agreements_access_type_metadata']) ? $data['account_agreements_access_type_metadata'] : null; diff --git a/src/Model/UserSharedItem.php b/src/Model/UserSharedItem.php index af5f4771..118b209a 100644 --- a/src/Model/UserSharedItem.php +++ b/src/Model/UserSharedItem.php @@ -171,9 +171,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -188,7 +188,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null; $this->container['shared'] = isset($data['shared']) ? $data['shared'] : null; diff --git a/src/Model/UserSignature.php b/src/Model/UserSignature.php index 2e434f00..dff553d6 100644 --- a/src/Model/UserSignature.php +++ b/src/Model/UserSignature.php @@ -305,9 +305,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -322,7 +322,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['adopted_date_time'] = isset($data['adopted_date_time']) ? $data['adopted_date_time'] : null; $this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null; @@ -441,7 +441,7 @@ public function getCustomField() /** * Sets custom_field * - * @param ?string $custom_field + * @param ?string $custom_field * * @return $this */ @@ -489,7 +489,7 @@ public function getDisallowUserResizeStamp() /** * Sets disallow_user_resize_stamp * - * @param ?string $disallow_user_resize_stamp + * @param ?string $disallow_user_resize_stamp * * @return $this */ @@ -537,7 +537,7 @@ public function getExternalId() /** * Sets external_id * - * @param ?string $external_id + * @param ?string $external_id * * @return $this */ @@ -561,7 +561,7 @@ public function getImageBase64() /** * Sets image_base64 * - * @param ?string $image_base64 + * @param ?string $image_base64 * * @return $this */ @@ -585,7 +585,7 @@ public function getImageType() /** * Sets image_type * - * @param ?string $image_type + * @param ?string $image_type * * @return $this */ @@ -609,7 +609,7 @@ public function getInitials150ImageId() /** * Sets initials150_image_id * - * @param ?string $initials150_image_id + * @param ?string $initials150_image_id * * @return $this */ @@ -657,7 +657,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -705,7 +705,7 @@ public function getNrdsId() /** * Sets nrds_id * - * @param ?string $nrds_id + * @param ?string $nrds_id * * @return $this */ @@ -729,7 +729,7 @@ public function getNrdsLastName() /** * Sets nrds_last_name * - * @param ?string $nrds_last_name + * @param ?string $nrds_last_name * * @return $this */ @@ -753,7 +753,7 @@ public function getNrdsStatus() /** * Sets nrds_status * - * @param ?string $nrds_status + * @param ?string $nrds_status * * @return $this */ @@ -777,7 +777,7 @@ public function getPhoneticName() /** * Sets phonetic_name * - * @param ?string $phonetic_name + * @param ?string $phonetic_name * * @return $this */ @@ -801,7 +801,7 @@ public function getSignature150ImageId() /** * Sets signature150_image_id * - * @param ?string $signature150_image_id + * @param ?string $signature150_image_id * * @return $this */ @@ -945,7 +945,7 @@ public function getSignatureRights() /** * Sets signature_rights * - * @param ?string $signature_rights + * @param ?string $signature_rights * * @return $this */ @@ -969,7 +969,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -993,7 +993,7 @@ public function getStampFormat() /** * Sets stamp_format * - * @param ?string $stamp_format + * @param ?string $stamp_format * * @return $this */ @@ -1017,7 +1017,7 @@ public function getStampImageUri() /** * Sets stamp_image_uri * - * @param ?string $stamp_image_uri + * @param ?string $stamp_image_uri * * @return $this */ @@ -1041,7 +1041,7 @@ public function getStampSizeMm() /** * Sets stamp_size_mm * - * @param ?string $stamp_size_mm + * @param ?string $stamp_size_mm * * @return $this */ @@ -1065,7 +1065,7 @@ public function getStampType() /** * Sets stamp_type * - * @param ?string $stamp_type + * @param ?string $stamp_type * * @return $this */ diff --git a/src/Model/UserSignatureDefinition.php b/src/Model/UserSignatureDefinition.php index ef2a643f..f4366356 100644 --- a/src/Model/UserSignatureDefinition.php +++ b/src/Model/UserSignatureDefinition.php @@ -230,9 +230,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -247,7 +247,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date_stamp_properties'] = isset($data['date_stamp_properties']) ? $data['date_stamp_properties'] : null; $this->container['disallow_user_resize_stamp'] = isset($data['disallow_user_resize_stamp']) ? $data['disallow_user_resize_stamp'] : null; @@ -327,7 +327,7 @@ public function getDisallowUserResizeStamp() /** * Sets disallow_user_resize_stamp * - * @param ?string $disallow_user_resize_stamp + * @param ?string $disallow_user_resize_stamp * * @return $this */ @@ -351,7 +351,7 @@ public function getExternalId() /** * Sets external_id * - * @param ?string $external_id + * @param ?string $external_id * * @return $this */ @@ -375,7 +375,7 @@ public function getImageType() /** * Sets image_type * - * @param ?string $image_type + * @param ?string $image_type * * @return $this */ @@ -399,7 +399,7 @@ public function getIsDefault() /** * Sets is_default * - * @param ?string $is_default + * @param ?string $is_default * * @return $this */ @@ -423,7 +423,7 @@ public function getNrdsId() /** * Sets nrds_id * - * @param ?string $nrds_id + * @param ?string $nrds_id * * @return $this */ @@ -447,7 +447,7 @@ public function getNrdsLastName() /** * Sets nrds_last_name * - * @param ?string $nrds_last_name + * @param ?string $nrds_last_name * * @return $this */ @@ -471,7 +471,7 @@ public function getPhoneticName() /** * Sets phonetic_name * - * @param ?string $phonetic_name + * @param ?string $phonetic_name * * @return $this */ @@ -495,7 +495,7 @@ public function getSignatureFont() /** * Sets signature_font * - * @param ?string $signature_font + * @param ?string $signature_font * * @return $this */ @@ -543,7 +543,7 @@ public function getSignatureInitials() /** * Sets signature_initials * - * @param ?string $signature_initials + * @param ?string $signature_initials * * @return $this */ @@ -591,7 +591,7 @@ public function getSignatureType() /** * Sets signature_type * - * @param ?string $signature_type + * @param ?string $signature_type * * @return $this */ @@ -615,7 +615,7 @@ public function getStampFormat() /** * Sets stamp_format * - * @param ?string $stamp_format + * @param ?string $stamp_format * * @return $this */ @@ -639,7 +639,7 @@ public function getStampSizeMm() /** * Sets stamp_size_mm * - * @param ?string $stamp_size_mm + * @param ?string $stamp_size_mm * * @return $this */ diff --git a/src/Model/UserSignaturesInformation.php b/src/Model/UserSignaturesInformation.php index 6adbf881..0327d262 100644 --- a/src/Model/UserSignaturesInformation.php +++ b/src/Model/UserSignaturesInformation.php @@ -160,9 +160,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['user_signatures'] = isset($data['user_signatures']) ? $data['user_signatures'] : null; } @@ -219,7 +219,7 @@ public function getUserSignatures() /** * Sets user_signatures * - * @param \DocuSign\eSign\Model\UserSignature[] $user_signatures + * @param \DocuSign\eSign\Model\UserSignature[] $user_signatures * * @return $this */ diff --git a/src/Model/UserSocialIdResult.php b/src/Model/UserSocialIdResult.php index 1eeb7c4d..581d0be7 100644 --- a/src/Model/UserSocialIdResult.php +++ b/src/Model/UserSocialIdResult.php @@ -165,9 +165,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -182,7 +182,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['social_account_information'] = isset($data['social_account_information']) ? $data['social_account_information'] : null; $this->container['user_id'] = isset($data['user_id']) ? $data['user_id'] : null; @@ -249,7 +249,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ diff --git a/src/Model/UsersResponse.php b/src/Model/UsersResponse.php index 5e01f540..2552e3cf 100644 --- a/src/Model/UsersResponse.php +++ b/src/Model/UsersResponse.php @@ -190,9 +190,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -207,7 +207,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['next_uri'] = isset($data['next_uri']) ? $data['next_uri'] : null; @@ -399,7 +399,7 @@ public function getUsers() /** * Sets users * - * @param \DocuSign\eSign\Model\UserInfo[] $users + * @param \DocuSign\eSign\Model\UserInfo[] $users * * @return $this */ diff --git a/src/Model/View.php b/src/Model/View.php index a9a1a450..e15b44d2 100644 --- a/src/Model/View.php +++ b/src/Model/View.php @@ -641,9 +641,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -658,7 +658,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null; @@ -796,7 +796,7 @@ public function getAgreementAttribute() /** * Sets agreement_attribute * - * @param ?string $agreement_attribute + * @param ?string $agreement_attribute * * @return $this */ @@ -820,7 +820,7 @@ public function getAgreementAttributeLocked() /** * Sets agreement_attribute_locked * - * @param ?string $agreement_attribute_locked + * @param ?string $agreement_attribute_locked * * @return $this */ @@ -844,7 +844,7 @@ public function getAnchorAllowWhiteSpaceInCharacters() /** * Sets anchor_allow_white_space_in_characters * - * @param ?string $anchor_allow_white_space_in_characters + * @param ?string $anchor_allow_white_space_in_characters * * @return $this */ @@ -1132,7 +1132,7 @@ public function getAnchorTabProcessorVersion() /** * Sets anchor_tab_processor_version * - * @param ?string $anchor_tab_processor_version + * @param ?string $anchor_tab_processor_version * * @return $this */ @@ -1372,7 +1372,7 @@ public function getButtonText() /** * Sets button_text * - * @param ?string $button_text + * @param ?string $button_text * * @return $this */ @@ -1420,7 +1420,7 @@ public function getCaption() /** * Sets caption * - * @param ?string $caption + * @param ?string $caption * * @return $this */ @@ -1444,7 +1444,7 @@ public function getCaptionMetadata() /** * Sets caption_metadata * - * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata + * @param \DocuSign\eSign\Model\PropertyMetadata $caption_metadata * * @return $this */ @@ -1564,7 +1564,7 @@ public function getConnectedObjectDetails() /** * Sets connected_object_details * - * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details + * @param \DocuSign\eSign\Model\ConnectedObjectDetails $connected_object_details * * @return $this */ @@ -1708,7 +1708,7 @@ public function getExtensionData() /** * Sets extension_data * - * @param \DocuSign\eSign\Model\ExtensionData $extension_data + * @param \DocuSign\eSign\Model\ExtensionData $extension_data * * @return $this */ @@ -1876,7 +1876,7 @@ public function getFormOrder() /** * Sets form_order * - * @param ?string $form_order + * @param ?string $form_order * * @return $this */ @@ -1924,7 +1924,7 @@ public function getFormPageLabel() /** * Sets form_page_label * - * @param ?string $form_page_label + * @param ?string $form_page_label * * @return $this */ @@ -1972,7 +1972,7 @@ public function getFormPageNumber() /** * Sets form_page_number * - * @param ?string $form_page_number + * @param ?string $form_page_number * * @return $this */ @@ -2164,7 +2164,7 @@ public function getMergeFieldXml() /** * Sets merge_field_xml * - * @param ?string $merge_field_xml + * @param ?string $merge_field_xml * * @return $this */ @@ -2260,7 +2260,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2380,7 +2380,7 @@ public function getRequiredRead() /** * Sets required_read * - * @param ?string $required_read + * @param ?string $required_read * * @return $this */ @@ -2428,7 +2428,7 @@ public function getSource() /** * Sets source * - * @param ?string $source + * @param ?string $source * * @return $this */ @@ -2500,7 +2500,7 @@ public function getTabFullyQualifiedPath() /** * Sets tab_fully_qualified_path * - * @param ?string $tab_fully_qualified_path + * @param ?string $tab_fully_qualified_path * * @return $this */ @@ -2524,7 +2524,7 @@ public function getTabGroupLabels() /** * Sets tab_group_labels * - * @param ?string[] $tab_group_labels + * @param ?string[] $tab_group_labels * * @return $this */ @@ -2668,7 +2668,7 @@ public function getTabOrder() /** * Sets tab_order * - * @param ?string $tab_order + * @param ?string $tab_order * * @return $this */ @@ -2716,7 +2716,7 @@ public function getTabType() /** * Sets tab_type * - * @param ?string $tab_type + * @param ?string $tab_type * * @return $this */ @@ -2860,7 +2860,7 @@ public function getTooltip() /** * Sets tooltip * - * @param ?string $tooltip + * @param ?string $tooltip * * @return $this */ @@ -2956,7 +2956,7 @@ public function getWarningDetails() /** * Sets warning_details * - * @param \DocuSign\eSign\Model\ErrorDetails $warning_details + * @param \DocuSign\eSign\Model\ErrorDetails $warning_details * * @return $this */ diff --git a/src/Model/ViewUrl.php b/src/Model/ViewUrl.php index a24bba6a..48b25211 100644 --- a/src/Model/ViewUrl.php +++ b/src/Model/ViewUrl.php @@ -177,7 +177,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['url'] = isset($data['url']) ? $data['url'] : null; } diff --git a/src/Model/Watermark.php b/src/Model/Watermark.php index 2b6bed57..b2bd98c4 100644 --- a/src/Model/Watermark.php +++ b/src/Model/Watermark.php @@ -200,9 +200,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -217,7 +217,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['display_angle'] = isset($data['display_angle']) ? $data['display_angle'] : null; $this->container['enabled'] = isset($data['enabled']) ? $data['enabled'] : null; @@ -267,7 +267,7 @@ public function getDisplayAngle() /** * Sets display_angle * - * @param ?string $display_angle + * @param ?string $display_angle * * @return $this */ @@ -291,7 +291,7 @@ public function getEnabled() /** * Sets enabled * - * @param ?string $enabled + * @param ?string $enabled * * @return $this */ @@ -387,7 +387,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -411,7 +411,7 @@ public function getImageBase64() /** * Sets image_base64 * - * @param ?string $image_base64 + * @param ?string $image_base64 * * @return $this */ @@ -435,7 +435,7 @@ public function getTransparency() /** * Sets transparency * - * @param ?string $transparency + * @param ?string $transparency * * @return $this */ @@ -459,7 +459,7 @@ public function getWatermarkText() /** * Sets watermark_text * - * @param ?string $watermark_text + * @param ?string $watermark_text * * @return $this */ diff --git a/src/Model/Witness.php b/src/Model/Witness.php index 10ead097..af1d50ce 100644 --- a/src/Model/Witness.php +++ b/src/Model/Witness.php @@ -666,9 +666,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -683,7 +683,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['access_code'] = isset($data['access_code']) ? $data['access_code'] : null; $this->container['access_code_metadata'] = isset($data['access_code_metadata']) ? $data['access_code_metadata'] : null; @@ -898,7 +898,7 @@ public function getAdditionalNotifications() /** * Sets additional_notifications * - * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications + * @param \DocuSign\eSign\Model\RecipientAdditionalNotification[] $additional_notifications * * @return $this */ @@ -922,7 +922,7 @@ public function getAgentCanEditEmail() /** * Sets agent_can_edit_email * - * @param ?string $agent_can_edit_email + * @param ?string $agent_can_edit_email * * @return $this */ @@ -946,7 +946,7 @@ public function getAgentCanEditName() /** * Sets agent_can_edit_name * - * @param ?string $agent_can_edit_name + * @param ?string $agent_can_edit_name * * @return $this */ @@ -970,7 +970,7 @@ public function getAllowSystemOverrideForLockedRecipient() /** * Sets allow_system_override_for_locked_recipient * - * @param ?string $allow_system_override_for_locked_recipient + * @param ?string $allow_system_override_for_locked_recipient * * @return $this */ @@ -994,7 +994,7 @@ public function getAutoNavigation() /** * Sets auto_navigation * - * @param ?string $auto_navigation + * @param ?string $auto_navigation * * @return $this */ @@ -1018,7 +1018,7 @@ public function getAutoRespondedReason() /** * Sets auto_responded_reason * - * @param ?string $auto_responded_reason + * @param ?string $auto_responded_reason * * @return $this */ @@ -1066,7 +1066,7 @@ public function getBulkSendV2Recipient() /** * Sets bulk_send_v2_recipient * - * @param ?string $bulk_send_v2_recipient + * @param ?string $bulk_send_v2_recipient * * @return $this */ @@ -1138,7 +1138,7 @@ public function getCompletedCount() /** * Sets completed_count * - * @param ?string $completed_count + * @param ?string $completed_count * * @return $this */ @@ -1162,7 +1162,7 @@ public function getConsentDetailsList() /** * Sets consent_details_list * - * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list + * @param \DocuSign\eSign\Model\ConsentDetails[] $consent_details_list * * @return $this */ @@ -1186,7 +1186,7 @@ public function getCreationReason() /** * Sets creation_reason * - * @param ?string $creation_reason + * @param ?string $creation_reason * * @return $this */ @@ -1282,7 +1282,7 @@ public function getDefaultRecipient() /** * Sets default_recipient * - * @param ?string $default_recipient + * @param ?string $default_recipient * * @return $this */ @@ -1306,7 +1306,7 @@ public function getDelegatedBy() /** * Sets delegated_by * - * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by + * @param \DocuSign\eSign\Model\DelegationInfo $delegated_by * * @return $this */ @@ -1330,7 +1330,7 @@ public function getDelegatedTo() /** * Sets delegated_to * - * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to + * @param \DocuSign\eSign\Model\DelegationInfo[] $delegated_to * * @return $this */ @@ -1426,7 +1426,7 @@ public function getDesignatorId() /** * Sets designator_id * - * @param ?string $designator_id + * @param ?string $designator_id * * @return $this */ @@ -1450,7 +1450,7 @@ public function getDesignatorIdGuid() /** * Sets designator_id_guid * - * @param ?string $designator_id_guid + * @param ?string $designator_id_guid * * @return $this */ @@ -1474,7 +1474,7 @@ public function getDocumentTemplateId() /** * Sets document_template_id * - * @param ?string $document_template_id + * @param ?string $document_template_id * * @return $this */ @@ -1498,7 +1498,7 @@ public function getDocumentVisibility() /** * Sets document_visibility * - * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility + * @param \DocuSign\eSign\Model\DocumentVisibility[] $document_visibility * * @return $this */ @@ -1522,7 +1522,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -1594,7 +1594,7 @@ public function getEmailRecipientPostSigningUrl() /** * Sets email_recipient_post_signing_url * - * @param ?string $email_recipient_post_signing_url + * @param ?string $email_recipient_post_signing_url * * @return $this */ @@ -1786,7 +1786,7 @@ public function getFullName() /** * Sets full_name * - * @param ?string $full_name + * @param ?string $full_name * * @return $this */ @@ -1954,7 +1954,7 @@ public function getIsBulkRecipient() /** * Sets is_bulk_recipient * - * @param ?string $is_bulk_recipient + * @param ?string $is_bulk_recipient * * @return $this */ @@ -2002,7 +2002,7 @@ public function getLastName() /** * Sets last_name * - * @param ?string $last_name + * @param ?string $last_name * * @return $this */ @@ -2050,7 +2050,7 @@ public function getLockedRecipientPhoneAuthEditable() /** * Sets locked_recipient_phone_auth_editable * - * @param ?string $locked_recipient_phone_auth_editable + * @param ?string $locked_recipient_phone_auth_editable * * @return $this */ @@ -2074,7 +2074,7 @@ public function getLockedRecipientSmsEditable() /** * Sets locked_recipient_sms_editable * - * @param ?string $locked_recipient_sms_editable + * @param ?string $locked_recipient_sms_editable * * @return $this */ @@ -2098,7 +2098,7 @@ public function getName() /** * Sets name * - * @param ?string $name + * @param ?string $name * * @return $this */ @@ -2146,7 +2146,7 @@ public function getNotaryId() /** * Sets notary_id * - * @param ?string $notary_id + * @param ?string $notary_id * * @return $this */ @@ -2170,7 +2170,7 @@ public function getNotarySignerEmailSent() /** * Sets notary_signer_email_sent * - * @param ?string $notary_signer_email_sent + * @param ?string $notary_signer_email_sent * * @return $this */ @@ -2386,7 +2386,7 @@ public function getRecipientFeatureMetadata() /** * Sets recipient_feature_metadata * - * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata + * @param \DocuSign\eSign\Model\FeatureAvailableMetadata[] $recipient_feature_metadata * * @return $this */ @@ -2434,7 +2434,7 @@ public function getRecipientIdGuid() /** * Sets recipient_id_guid * - * @param ?string $recipient_id_guid + * @param ?string $recipient_id_guid * * @return $this */ @@ -2458,7 +2458,7 @@ public function getRecipientSignatureProviders() /** * Sets recipient_signature_providers * - * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers + * @param \DocuSign\eSign\Model\RecipientSignatureProvider[] $recipient_signature_providers * * @return $this */ @@ -2482,7 +2482,7 @@ public function getRecipientSuppliesTabs() /** * Sets recipient_supplies_tabs * - * @param ?string $recipient_supplies_tabs + * @param ?string $recipient_supplies_tabs * * @return $this */ @@ -2506,7 +2506,7 @@ public function getRecipientType() /** * Sets recipient_type * - * @param ?string $recipient_type + * @param ?string $recipient_type * * @return $this */ @@ -2602,7 +2602,7 @@ public function getRequireSignerCertificate() /** * Sets require_signer_certificate * - * @param ?string $require_signer_certificate + * @param ?string $require_signer_certificate * * @return $this */ @@ -2626,7 +2626,7 @@ public function getRequireSignOnPaper() /** * Sets require_sign_on_paper * - * @param ?string $require_sign_on_paper + * @param ?string $require_sign_on_paper * * @return $this */ @@ -2650,7 +2650,7 @@ public function getRequireUploadSignature() /** * Sets require_upload_signature * - * @param ?string $require_upload_signature + * @param ?string $require_upload_signature * * @return $this */ @@ -3034,7 +3034,7 @@ public function getStatusCode() /** * Sets status_code * - * @param ?string $status_code + * @param ?string $status_code * * @return $this */ @@ -3058,7 +3058,7 @@ public function getSuppressEmails() /** * Sets suppress_emails * - * @param ?string $suppress_emails + * @param ?string $suppress_emails * * @return $this */ @@ -3154,7 +3154,7 @@ public function getTotalTabCount() /** * Sets total_tab_count * - * @param ?string $total_tab_count + * @param ?string $total_tab_count * * @return $this */ @@ -3178,7 +3178,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -3202,7 +3202,7 @@ public function getWebFormRecipientViewId() /** * Sets web_form_recipient_view_id * - * @param ?string $web_form_recipient_view_id + * @param ?string $web_form_recipient_view_id * * @return $this */ @@ -3226,7 +3226,7 @@ public function getWitnessFor() /** * Sets witness_for * - * @param ?string $witness_for + * @param ?string $witness_for * * @return $this */ @@ -3250,7 +3250,7 @@ public function getWitnessForGuid() /** * Sets witness_for_guid * - * @param ?string $witness_for_guid + * @param ?string $witness_for_guid * * @return $this */ diff --git a/src/Model/Workflow.php b/src/Model/Workflow.php index abcb9201..5cb6f2e8 100644 --- a/src/Model/Workflow.php +++ b/src/Model/Workflow.php @@ -203,7 +203,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['current_workflow_step_id'] = isset($data['current_workflow_step_id']) ? $data['current_workflow_step_id'] : null; $this->container['overwrite_update_mode'] = isset($data['overwrite_update_mode']) ? $data['overwrite_update_mode'] : null; diff --git a/src/Model/WorkflowStep.php b/src/Model/WorkflowStep.php index 20374a6d..bf6223f4 100644 --- a/src/Model/WorkflowStep.php +++ b/src/Model/WorkflowStep.php @@ -201,9 +201,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -218,7 +218,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action'] = isset($data['action']) ? $data['action'] : null; $this->container['completed_date'] = isset($data['completed_date']) ? $data['completed_date'] : null; @@ -268,7 +268,7 @@ public function getAction() /** * Sets action * - * @param ?string $action + * @param ?string $action * * @return $this */ @@ -292,7 +292,7 @@ public function getCompletedDate() /** * Sets completed_date * - * @param ?string $completed_date + * @param ?string $completed_date * * @return $this */ @@ -340,7 +340,7 @@ public function getItemId() /** * Sets item_id * - * @param ?string $item_id + * @param ?string $item_id * * @return $this */ @@ -412,7 +412,7 @@ public function getTriggeredDate() /** * Sets triggered_date * - * @param ?string $triggered_date + * @param ?string $triggered_date * * @return $this */ @@ -436,7 +436,7 @@ public function getTriggerOnItem() /** * Sets trigger_on_item * - * @param ?string $trigger_on_item + * @param ?string $trigger_on_item * * @return $this */ @@ -460,7 +460,7 @@ public function getWorkflowStepId() /** * Sets workflow_step_id * - * @param ?string $workflow_step_id + * @param ?string $workflow_step_id * * @return $this */ diff --git a/src/Model/Workspace.php b/src/Model/Workspace.php index 8ec09cbd..aa8ca997 100644 --- a/src/Model/Workspace.php +++ b/src/Model/Workspace.php @@ -221,9 +221,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -238,7 +238,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['billable_account_id'] = isset($data['billable_account_id']) ? $data['billable_account_id'] : null; $this->container['caller_information'] = isset($data['caller_information']) ? $data['caller_information'] : null; @@ -292,7 +292,7 @@ public function getBillableAccountId() /** * Sets billable_account_id * - * @param ?string $billable_account_id + * @param ?string $billable_account_id * * @return $this */ @@ -316,7 +316,7 @@ public function getCallerInformation() /** * Sets caller_information * - * @param \DocuSign\eSign\Model\WorkspaceUser $caller_information + * @param \DocuSign\eSign\Model\WorkspaceUser $caller_information * * @return $this */ @@ -340,7 +340,7 @@ public function getCreated() /** * Sets created * - * @param ?string $created + * @param ?string $created * * @return $this */ diff --git a/src/Model/WorkspaceFolderContents.php b/src/Model/WorkspaceFolderContents.php index 483e3def..82185c97 100644 --- a/src/Model/WorkspaceFolderContents.php +++ b/src/Model/WorkspaceFolderContents.php @@ -213,7 +213,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['folder'] = isset($data['folder']) ? $data['folder'] : null; diff --git a/src/Model/WorkspaceItem.php b/src/Model/WorkspaceItem.php index 19a3b893..219a60f5 100644 --- a/src/Model/WorkspaceItem.php +++ b/src/Model/WorkspaceItem.php @@ -276,9 +276,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -293,7 +293,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['caller_authorization'] = isset($data['caller_authorization']) ? $data['caller_authorization'] : null; $this->container['content_type'] = isset($data['content_type']) ? $data['content_type'] : null; @@ -358,7 +358,7 @@ public function getCallerAuthorization() /** * Sets caller_authorization * - * @param \DocuSign\eSign\Model\WorkspaceUserAuthorization $caller_authorization + * @param \DocuSign\eSign\Model\WorkspaceUserAuthorization $caller_authorization * * @return $this */ @@ -382,7 +382,7 @@ public function getContentType() /** * Sets content_type * - * @param ?string $content_type + * @param ?string $content_type * * @return $this */ @@ -430,7 +430,7 @@ public function getCreatedById() /** * Sets created_by_id * - * @param ?string $created_by_id + * @param ?string $created_by_id * * @return $this */ @@ -478,7 +478,7 @@ public function getExtension() /** * Sets extension * - * @param ?string $extension + * @param ?string $extension * * @return $this */ @@ -502,7 +502,7 @@ public function getFileSize() /** * Sets file_size * - * @param ?string $file_size + * @param ?string $file_size * * @return $this */ @@ -526,7 +526,7 @@ public function getFileUri() /** * Sets file_uri * - * @param ?string $file_uri + * @param ?string $file_uri * * @return $this */ @@ -550,7 +550,7 @@ public function getId() /** * Sets id * - * @param ?string $id + * @param ?string $id * * @return $this */ @@ -598,7 +598,7 @@ public function getLastModified() /** * Sets last_modified * - * @param ?string $last_modified + * @param ?string $last_modified * * @return $this */ @@ -694,7 +694,7 @@ public function getPageCount() /** * Sets page_count * - * @param ?string $page_count + * @param ?string $page_count * * @return $this */ @@ -742,7 +742,7 @@ public function getParentFolderUri() /** * Sets parent_folder_uri * - * @param ?string $parent_folder_uri + * @param ?string $parent_folder_uri * * @return $this */ @@ -766,7 +766,7 @@ public function getSha256() /** * Sets sha256 * - * @param ?string $sha256 + * @param ?string $sha256 * * @return $this */ @@ -790,7 +790,7 @@ public function getThumbHeight() /** * Sets thumb_height * - * @param ?string $thumb_height + * @param ?string $thumb_height * * @return $this */ @@ -814,7 +814,7 @@ public function getThumbnail() /** * Sets thumbnail * - * @param \DocuSign\eSign\Model\Page $thumbnail + * @param \DocuSign\eSign\Model\Page $thumbnail * * @return $this */ @@ -838,7 +838,7 @@ public function getThumbWidth() /** * Sets thumb_width * - * @param ?string $thumb_width + * @param ?string $thumb_width * * @return $this */ @@ -886,7 +886,7 @@ public function getUri() /** * Sets uri * - * @param ?string $uri + * @param ?string $uri * * @return $this */ @@ -910,7 +910,7 @@ public function getUserAuthorization() /** * Sets user_authorization * - * @param \DocuSign\eSign\Model\WorkspaceUserAuthorization $user_authorization + * @param \DocuSign\eSign\Model\WorkspaceUserAuthorization $user_authorization * * @return $this */ diff --git a/src/Model/WorkspaceItemList.php b/src/Model/WorkspaceItemList.php index 5fa94c35..fefdc3fd 100644 --- a/src/Model/WorkspaceItemList.php +++ b/src/Model/WorkspaceItemList.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['items'] = isset($data['items']) ? $data['items'] : null; } @@ -220,7 +220,7 @@ public function getItems() /** * Sets items * - * @param \DocuSign\eSign\Model\WorkspaceItem[] $items + * @param \DocuSign\eSign\Model\WorkspaceItem[] $items * * @return $this */ diff --git a/src/Model/WorkspaceList.php b/src/Model/WorkspaceList.php index 81b137b3..763d800d 100644 --- a/src/Model/WorkspaceList.php +++ b/src/Model/WorkspaceList.php @@ -181,9 +181,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -198,7 +198,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_position'] = isset($data['end_position']) ? $data['end_position'] : null; $this->container['result_set_size'] = isset($data['result_set_size']) ? $data['result_set_size'] : null; diff --git a/src/Model/WorkspaceSettings.php b/src/Model/WorkspaceSettings.php index bcb6ca2b..12aca805 100644 --- a/src/Model/WorkspaceSettings.php +++ b/src/Model/WorkspaceSettings.php @@ -161,9 +161,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -178,7 +178,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['comments_allowed'] = isset($data['comments_allowed']) ? $data['comments_allowed'] : null; } @@ -220,7 +220,7 @@ public function getCommentsAllowed() /** * Sets comments_allowed * - * @param ?string $comments_allowed + * @param ?string $comments_allowed * * @return $this */ diff --git a/src/Model/WorkspaceUser.php b/src/Model/WorkspaceUser.php index c13f35c0..e3856ce8 100644 --- a/src/Model/WorkspaceUser.php +++ b/src/Model/WorkspaceUser.php @@ -251,9 +251,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -268,7 +268,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; @@ -376,7 +376,7 @@ public function getActiveSince() /** * Sets active_since * - * @param ?string $active_since + * @param ?string $active_since * * @return $this */ @@ -424,7 +424,7 @@ public function getCreatedById() /** * Sets created_by_id * - * @param ?string $created_by_id + * @param ?string $created_by_id * * @return $this */ @@ -448,7 +448,7 @@ public function getEmail() /** * Sets email * - * @param ?string $email + * @param ?string $email * * @return $this */ @@ -496,7 +496,7 @@ public function getInvitationEmailBlurb() /** * Sets invitation_email_blurb * - * @param ?string $invitation_email_blurb + * @param ?string $invitation_email_blurb * * @return $this */ @@ -520,7 +520,7 @@ public function getInvitationEmailSubject() /** * Sets invitation_email_subject * - * @param ?string $invitation_email_subject + * @param ?string $invitation_email_subject * * @return $this */ @@ -568,7 +568,7 @@ public function getLastModifiedById() /** * Sets last_modified_by_id * - * @param ?string $last_modified_by_id + * @param ?string $last_modified_by_id * * @return $this */ @@ -640,7 +640,7 @@ public function getUserId() /** * Sets user_id * - * @param ?string $user_id + * @param ?string $user_id * * @return $this */ @@ -664,7 +664,7 @@ public function getUserName() /** * Sets user_name * - * @param ?string $user_name + * @param ?string $user_name * * @return $this */ @@ -688,7 +688,7 @@ public function getWorkspaceId() /** * Sets workspace_id * - * @param ?string $workspace_id + * @param ?string $workspace_id * * @return $this */ @@ -736,7 +736,7 @@ public function getWorkspaceUserId() /** * Sets workspace_user_id * - * @param ?string $workspace_user_id + * @param ?string $workspace_user_id * * @return $this */ @@ -760,7 +760,7 @@ public function getWorkspaceUserUri() /** * Sets workspace_user_uri * - * @param ?string $workspace_user_uri + * @param ?string $workspace_user_uri * * @return $this */ diff --git a/src/Model/WorkspaceUserAuthorization.php b/src/Model/WorkspaceUserAuthorization.php index 196d0e65..b84dd0df 100644 --- a/src/Model/WorkspaceUserAuthorization.php +++ b/src/Model/WorkspaceUserAuthorization.php @@ -211,9 +211,9 @@ public function getModelName() return self::$swaggerModelName; } - - + + /** * Associative array for storing property values @@ -228,7 +228,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['can_delete'] = isset($data['can_delete']) ? $data['can_delete'] : null; $this->container['can_move'] = isset($data['can_move']) ? $data['can_move'] : null; @@ -280,7 +280,7 @@ public function getCanDelete() /** * Sets can_delete * - * @param ?string $can_delete + * @param ?string $can_delete * * @return $this */ @@ -304,7 +304,7 @@ public function getCanMove() /** * Sets can_move * - * @param ?string $can_move + * @param ?string $can_move * * @return $this */ @@ -328,7 +328,7 @@ public function getCanTransact() /** * Sets can_transact * - * @param ?string $can_transact + * @param ?string $can_transact * * @return $this */ @@ -352,7 +352,7 @@ public function getCanView() /** * Sets can_view * - * @param ?string $can_view + * @param ?string $can_view * * @return $this */ @@ -400,7 +400,7 @@ public function getCreatedById() /** * Sets created_by_id * - * @param ?string $created_by_id + * @param ?string $created_by_id * * @return $this */ @@ -448,7 +448,7 @@ public function getModified() /** * Sets modified * - * @param ?string $modified + * @param ?string $modified * * @return $this */ @@ -472,7 +472,7 @@ public function getModifiedById() /** * Sets modified_by_id * - * @param ?string $modified_by_id + * @param ?string $modified_by_id * * @return $this */ @@ -496,7 +496,7 @@ public function getWorkspaceUserId() /** * Sets workspace_user_id * - * @param ?string $workspace_user_id + * @param ?string $workspace_user_id * * @return $this */ diff --git a/src/Model/Zip.php b/src/Model/Zip.php index 6366f53b..d9ddd6f1 100644 --- a/src/Model/Zip.php +++ b/src/Model/Zip.php @@ -793,7 +793,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['agreement_attribute'] = isset($data['agreement_attribute']) ? $data['agreement_attribute'] : null; $this->container['agreement_attribute_locked'] = isset($data['agreement_attribute_locked']) ? $data['agreement_attribute_locked'] : null;