diff --git a/bin/create-docblocs.php b/bin/create-docblocs.php index 3950c5e..f4cb875 100755 --- a/bin/create-docblocs.php +++ b/bin/create-docblocs.php @@ -115,7 +115,7 @@ function getParamType(array $parameters, string $param) { foreach ($parameters as $p) { if ($p->name === preg_replace('/^\$/', '', $param) && $p->hasType()) { - return "\\" . ((string)$p->getType()); + return "\\" . preg_replace('/^\?/', '', (string)$p->getType()); } } diff --git a/composer.json b/composer.json index 336f7d3..a3c57e4 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "require": { "ext-json": "*", "php": "^7.3 | ^8.0", - "docusign/esign-client": "^5.1" + "docusign/esign-client": "^6.0" }, "require-dev": { "phpunit/phpunit": "~9.5" diff --git a/src/Api/Accounts.php b/src/Api/Accounts.php index f98d39d..c749e5e 100644 --- a/src/Api/Accounts.php +++ b/src/Api/Accounts.php @@ -8,8 +8,9 @@ /** * Class Accounts * @method Api\AccountsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\AccountsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Api\AccountsApi\CreateOptions createOptions(array $options = ['set_preview_billing_plan' => null]) * @method Models\NewAccountSummary create(Models\NewAccountDefinition $new_account_definition = null, Api\AccountsApi\CreateOptions $options = null) Creates new accounts * @method Api\AccountsApi\CreateAccountSignaturesOptions createAccountSignaturesOptions(array $options = ['set_decode_only' => null]) @@ -20,25 +21,25 @@ * @method Api\AccountsApi\CreatePermissionProfileOptions createPermissionProfileOptions(array $options = ['set_include' => null]) * @method Models\PermissionProfile createPermissionProfile(Models\PermissionProfile $permission_profile = null, Api\AccountsApi\CreatePermissionProfileOptions $options = null) Creates a new permission profile in the specified account * @method Models\ReportInProductSaveResponse createReportInProductCreate(Models\ReportInProductRunRequest $report_in_product_run_request = null) Creates a customized report - * @method void delete() Deletes the specified account - * @method void deleteAccountSignature(string $signature_id) Close the specified signature by Id - * @method Models\AccountSignature deleteAccountSignatureImage(string $image_type, string $signature_id) Deletes a signature or - * @method void deleteBrand(string $brand_id) Removes a brand - * @method void deleteBrandLogoByType(string $brand_id, string $logo_type) Delete one branding logo or + * @method mixed delete() Deletes the specified account + * @method mixed deleteAccountSignature(?string $signature_id) Close the specified signature by Id + * @method Models\AccountSignature deleteAccountSignatureImage(?string $image_type, ?string $signature_id) Deletes a signature or + * @method mixed deleteBrand(?string $brand_id) Removes a brand + * @method mixed deleteBrandLogoByType(?string $brand_id, ?string $logo_type) Delete one branding logo or * @method Models\BrandsResponse deleteBrands(Models\BrandsRequest $brands_request = null) Deletes one or more brand profiles - * @method Models\CaptiveRecipientInformation deleteCaptiveRecipient(string $recipient_part, Models\CaptiveRecipientInformation $captive_recipient_information = null) Deletes the signature for one or more captive recipient records + * @method Models\CaptiveRecipientInformation deleteCaptiveRecipient(?string $recipient_part, Models\CaptiveRecipientInformation $captive_recipient_information = null) Deletes the signature for one or more captive recipient records * @method Api\AccountsApi\DeleteCustomFieldOptions deleteCustomFieldOptions(array $options = ['set_apply_to_templates' => null]) - * @method void deleteCustomField(string $custom_field_id, Api\AccountsApi\DeleteCustomFieldOptions $options = null) Delete an existing account custom field - * @method void deleteENoteConfiguration() Deletes configuration information for the eNote eOriginal integration + * @method mixed deleteCustomField(?string $custom_field_id, Api\AccountsApi\DeleteCustomFieldOptions $options = null) Delete an existing account custom field + * @method mixed deleteENoteConfiguration() Deletes configuration information for the eNote eOriginal integration * @method Api\AccountsApi\DeletePermissionProfileOptions deletePermissionProfileOptions(array $options = ['set_move_users_to' => null]) - * @method void deletePermissionProfile(string $permission_profile_id, Api\AccountsApi\DeletePermissionProfileOptions $options = null) Deletes a permissions profile within the specified account - * @method Models\ReportInProductSaveResponse deleteReportInProduct(string $id) Removes a customized report + * @method mixed deletePermissionProfile(?string $permission_profile_id, Api\AccountsApi\DeletePermissionProfileOptions $options = null) Deletes a permissions profile within the specified account + * @method Models\ReportInProductSaveResponse deleteReportInProduct(?string $id) Removes a customized report * @method Models\AccountIdentityVerificationResponse getAccountIdentityVerification() Get the list of identity verification options for an account * @method Api\AccountsApi\GetAccountInformationOptions getAccountInformationOptions(array $options = ['set_include_account_settings' => null]) * @method Models\AccountInformation getAccountInformation(Api\AccountsApi\GetAccountInformationOptions $options = null) Retrieves the account information for the specified account - * @method Models\AccountSignature getAccountSignature(string $signature_id) Returns information about a single signature by specifed signatureId + * @method Models\AccountSignature getAccountSignature(?string $signature_id) Returns information about a single signature by specifed signatureId * @method Api\AccountsApi\GetAccountSignatureImageOptions getAccountSignatureImageOptions(array $options = ['set_include_chrome' => null]) - * @method \SplFileObject getAccountSignatureImage(string $image_type, string $signature_id, Api\AccountsApi\GetAccountSignatureImageOptions $options = null) Returns a signature or + * @method \SplFileObject getAccountSignatureImage(?string $image_type, ?string $signature_id, Api\AccountsApi\GetAccountSignatureImageOptions $options = null) Returns a signature or * @method Api\AccountsApi\GetAccountSignaturesOptions getAccountSignaturesOptions(array $options = ['set_stamp_format' => null, 'set_stamp_name' => null, 'set_stamp_type' => null]) * @method Models\AccountSignaturesInformation getAccountSignatures(Api\AccountsApi\GetAccountSignaturesOptions $options = null) Returns the managed signature definitions for the account * @method Models\TabAccountSettings getAccountTabSettings() Returns tab settings list for specified account @@ -46,13 +47,13 @@ * @method Api\AccountsApi\GetBillingChargesOptions getBillingChargesOptions(array $options = ['set_include_charges' => null]) * @method Models\BillingChargeResponse getBillingCharges(Api\AccountsApi\GetBillingChargesOptions $options = null) Gets list of recurring and usage charges for the account * @method Api\AccountsApi\GetBrandOptions getBrandOptions(array $options = ['set_include_external_references' => null, 'set_include_logos' => null]) - * @method Models\Brand getBrand(string $brand_id, Api\AccountsApi\GetBrandOptions $options = null) Get information for a specific brand - * @method void getBrandExportFile(string $brand_id) Export a specific brand - * @method \SplFileObject getBrandLogoByType(string $brand_id, string $logo_type) Obtains the specified image for a brand or - * @method Models\BrandResourcesList getBrandResources(string $brand_id) Returns the specified account + * @method Models\Brand getBrand(?string $brand_id, Api\AccountsApi\GetBrandOptions $options = null) Get information for a specific brand + * @method mixed getBrandExportFile(?string $brand_id) Export a specific brand + * @method \SplFileObject getBrandLogoByType(?string $brand_id, ?string $logo_type) Obtains the specified image for a brand or + * @method Models\BrandResourcesList getBrandResources(?string $brand_id) Returns the specified account * @method Api\AccountsApi\GetBrandResourcesByContentTypeOptions getBrandResourcesByContentTypeOptions(array $options = ['set_langcode' => null, 'set_return_master' => null]) - * @method void getBrandResourcesByContentType(string $brand_id, string $resource_content_type, Api\AccountsApi\GetBrandResourcesByContentTypeOptions $options = null) Returns the specified branding resource file - * @method Models\ConsumerDisclosure getConsumerDisclosure(string $lang_code) Gets the Electronic Record and Signature Disclosure + * @method mixed getBrandResourcesByContentType(?string $brand_id, ?string $resource_content_type, Api\AccountsApi\GetBrandResourcesByContentTypeOptions $options = null) Returns the specified branding resource file + * @method Models\ConsumerDisclosure getConsumerDisclosure(?string $lang_code) Gets the Electronic Record and Signature Disclosure * @method Api\AccountsApi\GetConsumerDisclosureDefaultOptions getConsumerDisclosureDefaultOptions(array $options = ['set_lang_code' => null]) * @method Models\ConsumerDisclosure getConsumerDisclosureDefault(Api\AccountsApi\GetConsumerDisclosureDefaultOptions $options = null) Gets the Electronic Record and Signature Disclosure for the account * @method Models\ENoteConfiguration getENoteConfiguration() Returns the configuration information for the eNote eOriginal integration @@ -61,9 +62,9 @@ * @method Models\NotificationDefaults getNotificationDefaults() Returns default user level settings for a specified account * @method Models\AccountPasswordRules getPasswordRules() Get the password rules * @method Api\AccountsApi\GetPermissionProfileOptions getPermissionProfileOptions(array $options = ['set_include' => null]) - * @method Models\PermissionProfile getPermissionProfile(string $permission_profile_id, Api\AccountsApi\GetPermissionProfileOptions $options = null) Returns a permissions profile in the specified account + * @method Models\PermissionProfile getPermissionProfile(?string $permission_profile_id, Api\AccountsApi\GetPermissionProfileOptions $options = null) Returns a permissions profile in the specified account * @method Models\ProvisioningInformation getProvisioning() Retrieves the account provisioning information for the account - * @method Models\ReportInProductGet getReportInProduct(string $id) Gets the specified report + * @method Models\ReportInProductGet getReportInProduct(?string $id) Gets the specified report * @method Models\ReportInProductList getReportInProductList() Gets the descriptors for all of an account * @method Models\SupportedLanguages getSupportedLanguages() Gets list of supported languages for recipient language setting * @method Models\Watermark getWatermark() Get watermark information @@ -83,28 +84,28 @@ * @method Models\FavoriteTemplatesInfo unFavoriteTemplate(Models\FavoriteTemplatesInfo $favorite_templates_info = null) Unfavorite a template * @method Models\AccountSignaturesInformation updateAccountSignature(Models\AccountSignaturesInformation $account_signatures_information = null) Updates a account signature * @method Api\AccountsApi\UpdateAccountSignatureByIdOptions updateAccountSignatureByIdOptions(array $options = ['set_close_existing_signature' => null]) - * @method Models\AccountSignature updateAccountSignatureById(string $signature_id, Models\AccountSignatureDefinition $account_signature_definition = null, Api\AccountsApi\UpdateAccountSignatureByIdOptions $options = null) Updates a account signature + * @method Models\AccountSignature updateAccountSignatureById(?string $signature_id, Models\AccountSignatureDefinition $account_signature_definition = null, Api\AccountsApi\UpdateAccountSignatureByIdOptions $options = null) Updates a account signature * @method Api\AccountsApi\UpdateAccountSignatureImageOptions updateAccountSignatureImageOptions(array $options = ['set_transparent_png' => null]) - * @method Models\AccountSignature updateAccountSignatureImage(string $image_type, string $signature_id, Api\AccountsApi\UpdateAccountSignatureImageOptions $options = null) Sets a signature or + * @method Models\AccountSignature updateAccountSignatureImage(?string $image_type, ?string $signature_id, Api\AccountsApi\UpdateAccountSignatureImageOptions $options = null) Sets a signature or * @method Models\TabAccountSettings updateAccountTabSettings(Models\TabAccountSettings $tab_account_settings = null) Modifies tab settings for specified account - * @method Models\Brand updateBrand(string $brand_id, Models\Brand $brand = null) Updates an existing brand - * @method void updateBrandLogoByType(string $brand_id, string $logo_type, string $logo_file_bytes) Put one branding logo - * @method Models\BrandResources updateBrandResourcesByContentType(string $brand_id, string $resource_content_type, \SplFileObject $file_xml) Uploads a branding resource file + * @method Models\Brand updateBrand(?string $brand_id, Models\Brand $brand = null) Updates an existing brand + * @method mixed updateBrandLogoByType(?string $brand_id, ?string $logo_type, ?string $logo_file_bytes) Put one branding logo + * @method Models\BrandResources updateBrandResourcesByContentType(?string $brand_id, ?string $resource_content_type, \SplFileObject $file_xml) Uploads a branding resource file * @method Api\AccountsApi\UpdateConsumerDisclosureOptions updateConsumerDisclosureOptions(array $options = ['set_include_metadata' => null]) - * @method Models\ConsumerDisclosure updateConsumerDisclosure(string $lang_code, Models\ConsumerDisclosure $consumer_disclosure = null, Api\AccountsApi\UpdateConsumerDisclosureOptions $options = null) Update Consumer Disclosure + * @method Models\ConsumerDisclosure updateConsumerDisclosure(?string $lang_code, Models\ConsumerDisclosure $consumer_disclosure = null, Api\AccountsApi\UpdateConsumerDisclosureOptions $options = null) Update Consumer Disclosure * @method Api\AccountsApi\UpdateCustomFieldOptions updateCustomFieldOptions(array $options = ['set_apply_to_templates' => null]) - * @method Models\CustomFields updateCustomField(string $custom_field_id, Models\CustomField $custom_field = null, Api\AccountsApi\UpdateCustomFieldOptions $options = null) Updates an existing account custom field + * @method Models\CustomFields updateCustomField(?string $custom_field_id, Models\CustomField $custom_field = null, Api\AccountsApi\UpdateCustomFieldOptions $options = null) Updates an existing account custom field * @method Models\ENoteConfiguration updateENoteConfiguration(Models\ENoteConfiguration $e_note_configuration = null) Updates configuration information for the eNote eOriginal integration * @method Models\EnvelopePurgeConfiguration updateEnvelopePurgeConfiguration(Models\EnvelopePurgeConfiguration $envelope_purge_configuration = null) Updates envelope purge configuration * @method Models\FavoriteTemplatesInfo updateFavoriteTemplate(Models\FavoriteTemplatesInfo $favorite_templates_info = null) Favorites a template * @method Models\NotificationDefaults updateNotificationDefaults(Models\NotificationDefaults $notification_defaults = null) Updates default user level settings for a specified account * @method Models\AccountPasswordRules updatePasswordRules(Models\AccountPasswordRules $account_password_rules = null) Update the password rules * @method Api\AccountsApi\UpdatePermissionProfileOptions updatePermissionProfileOptions(array $options = ['set_include' => null]) - * @method Models\PermissionProfile updatePermissionProfile(string $permission_profile_id, Models\PermissionProfile $permission_profile = null, Api\AccountsApi\UpdatePermissionProfileOptions $options = null) Updates a permission profile within the specified account + * @method Models\PermissionProfile updatePermissionProfile(?string $permission_profile_id, Models\PermissionProfile $permission_profile = null, Api\AccountsApi\UpdatePermissionProfileOptions $options = null) Updates a permission profile within the specified account * @method Models\ReportInProductRunResponse updateReportInProductRunResults(Models\ReportInProductRunRequest $report_in_product_run_request = null) Returns the result set from running the specified report - * @method Models\ReportInProductSaveResponse updateReportInProductSave(string $id, Models\ReportInProductRunRequest $report_in_product_run_request = null) Saves a customized report - * @method void updateReportResultsCsv(Models\ReportInProductCsvRunRequest $report_in_product_csv_run_request = null) Returns the specified report as a CSV string - * @method void updateSettings(Models\AccountSettingsInformation $account_settings_information = null) Updates the account settings for an account + * @method Models\ReportInProductSaveResponse updateReportInProductSave(?string $id, Models\ReportInProductRunRequest $report_in_product_run_request = null) Saves a customized report + * @method mixed updateReportResultsCsv(Models\ReportInProductCsvRunRequest $report_in_product_csv_run_request = null) Returns the specified report as a CSV string + * @method mixed updateSettings(Models\AccountSettingsInformation $account_settings_information = null) Updates the account settings for an account * @method Api\AccountsApi\UpdateSharedAccessOptions updateSharedAccessOptions(array $options = ['set_item_type' => null, 'set_preserve_existing_shared_access' => null, 'set_user_ids' => null]) * @method Models\AccountSharedAccess updateSharedAccess(Models\AccountSharedAccess $account_shared_access = null, Api\AccountsApi\UpdateSharedAccessOptions $options = null) Reserved * @method Models\Watermark updateWatermark(Models\Watermark $watermark = null) Update watermark information diff --git a/src/Api/Authentication.php b/src/Api/Authentication.php index eeb12b0..20e7d45 100644 --- a/src/Api/Authentication.php +++ b/src/Api/Authentication.php @@ -8,16 +8,17 @@ /** * Class Authentication * @method Api\AuthenticationApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\AuthenticationApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method void deleteSocialLogin(string $user_id, Models\SocialAccountInformation $social_account_information = null) Deletes user + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method mixed deleteSocialLogin(?string $user_id, Models\SocialAccountInformation $social_account_information = null) Deletes user * @method Models\OauthAccess getOAuthToken() Creates an authorization token - * @method Models\UserSocialIdResult listSocialLogins(string $user_id) Gets a list of a user + * @method Models\UserSocialIdResult listSocialLogins(?string $user_id) Gets a list of a user * @method Api\AuthenticationApi\LoginOptions loginOptions(array $options = ['set_api_password' => null, 'set_embed_account_id_guid' => null, 'set_include_account_id_guid' => null, 'set_login_settings' => null]) * @method Models\LoginInformation login(Api\AuthenticationApi\LoginOptions $options = null) Gets login information for a specified user - * @method void revokeOAuthToken() Revokes an authorization token - * @method void updatePassword(string $login_part, Models\UserPasswordInformation $user_password_information = null) Updates the password for a specified user is supported - * @method void updateSocialLogin(string $user_id, Models\SocialAccountInformation $social_account_information = null) Adds social account for a user + * @method mixed revokeOAuthToken() Revokes an authorization token + * @method mixed updatePassword(?string $login_part, Models\UserPasswordInformation $user_password_information = null) Updates the password for a specified user is supported + * @method mixed updateSocialLogin(?string $user_id, Models\SocialAccountInformation $social_account_information = null) Adds social account for a user */ class Authentication extends BaseApi { diff --git a/src/Api/Billing.php b/src/Api/Billing.php index 9fd1378..0ecca9a 100644 --- a/src/Api/Billing.php +++ b/src/Api/Billing.php @@ -8,14 +8,15 @@ /** * Class Billing * @method Api\BillingApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\BillingApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method Models\BillingPlanResponse getBillingPlan(string $billing_plan_id) Get the billing plan details + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method Models\BillingPlanResponse getBillingPlan(?string $billing_plan_id) Get the billing plan details * @method Models\CreditCardInformation getCreditCardInfo() Get metadata for a given credit card * @method Models\DowngradRequestBillingInfoResponse getDowngradeRequestBillingInfo() Returns downgrade plan information for the specified account - * @method Models\BillingInvoice getInvoice(string $invoice_id) Retrieves a billing invoice - * @method Models\BillingPaymentItem getPayment(string $payment_id) Gets billing payment information for a specific payment - * @method Api\BillingApi\GetPlanOptions getPlanOptions(array $options = ['set_include_credit_card_information' => null, 'set_include_metadata' => null, 'set_include_successor_plans' => null]) + * @method Models\BillingInvoice getInvoice(?string $invoice_id) Retrieves a billing invoice + * @method Models\BillingPaymentItem getPayment(?string $payment_id) Gets billing payment information for a specific payment + * @method Api\BillingApi\GetPlanOptions getPlanOptions(array $options = ['set_include_credit_card_information' => null, 'set_include_downgrade_information' => null, 'set_include_metadata' => null, 'set_include_successor_plans' => null]) * @method Models\AccountBillingPlanResponse getPlan(Api\BillingApi\GetPlanOptions $options = null) Get Account Billing Plan * @method Models\BillingPlansResponse listBillingPlans() Gets the list of available billing plans * @method Api\BillingApi\ListInvoicesOptions listInvoicesOptions(array $options = ['set_from_date' => null, 'set_to_date' => null]) @@ -24,7 +25,7 @@ * @method Api\BillingApi\ListPaymentsOptions listPaymentsOptions(array $options = ['set_from_date' => null, 'set_to_date' => null]) * @method Models\BillingPaymentsResponse listPayments(Api\BillingApi\ListPaymentsOptions $options = null) Gets payment information for one or more payments * @method Models\BillingPaymentResponse makePayment(Models\BillingPaymentRequest $billing_payment_request = null) Posts a payment to a past due invoice - * @method void purchaseEnvelopes(Models\PurchasedEnvelopesInformation $purchased_envelopes_information = null) Reserverd + * @method mixed purchaseEnvelopes(Models\PurchasedEnvelopesInformation $purchased_envelopes_information = null) Reserverd * @method Models\DowngradePlanUpdateResponse updateDowngradeAccountBillingPlan(Models\DowngradeBillingPlanInformation $downgrade_billing_plan_information = null) Queues downgrade billing plan request for an account * @method Api\BillingApi\UpdatePlanOptions updatePlanOptions(array $options = ['set_preview_billing_plan' => null]) * @method Models\BillingPlanUpdateResponse updatePlan(Models\BillingPlanInformation $billing_plan_information = null, Api\BillingApi\UpdatePlanOptions $options = null) Updates the account billing plan diff --git a/src/Api/BulkEnvelopes.php b/src/Api/BulkEnvelopes.php index 3ff9579..4d44608 100644 --- a/src/Api/BulkEnvelopes.php +++ b/src/Api/BulkEnvelopes.php @@ -8,31 +8,26 @@ /** * Class BulkEnvelopes * @method Api\BulkEnvelopesApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\BulkEnvelopesApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method Models\BulkEnvelopesResponse callList(Api\BulkEnvelopesApi\ListOptions $options = null) Gets status information about bulk recipient batches + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\BulkSendingList createBulkSendList(Models\BulkSendingList $bulk_sending_list = null) Creates a new bulk send list - * @method Models\BulkSendResponse createBulkSendRequest(string $bulk_send_list_id, Models\BulkSendRequest $bulk_send_request = null) Uses the specified bulk send list to send the envelope specified in the payload - * @method Models\BulkSendTestResponse createBulkSendTestRequest(string $bulk_send_list_id, Models\BulkSendRequest $bulk_send_request = null) Tests whether the specified bulk sending list can be used to send an envelope - * @method Models\BulkSendingListSummaries deleteBulkSendList(string $bulk_send_list_id) Deletes an existing bulk send list - * @method Models\BulkRecipientsUpdateResponse deleteRecipients(string $envelope_id, string $recipient_id) Deletes the bulk recipient file from an envelope - * @method Api\BulkEnvelopesApi\GetOptions getOptions(array $options = ['set_count' => null, 'set_include' => null, 'set_start_position' => null]) - * @method Models\BulkEnvelopeStatus get(string $batch_id, Api\BulkEnvelopesApi\GetOptions $options = null) Gets the status of a specified bulk send operation - * @method Models\BulkSendBatchStatus getBulkSendBatchStatus(string $bulk_send_batch_id) Gets a specific bulk send batch status - * @method Api\BulkEnvelopesApi\GetBulkSendBatchesOptions getBulkSendBatchesOptions(array $options = ['set_batch_ids' => null, 'set_count' => null, 'set_start_position' => null, 'set_status' => null]) + * @method Models\BulkSendResponse createBulkSendRequest(?string $bulk_send_list_id, Models\BulkSendRequest $bulk_send_request = null) Uses the specified bulk send list to send the envelope specified in the payload + * @method Models\BulkSendTestResponse createBulkSendTestRequest(?string $bulk_send_list_id, Models\BulkSendRequest $bulk_send_request = null) Tests whether the specified bulk sending list can be used to send an envelope + * @method Models\BulkSendingListSummaries deleteBulkSendList(?string $bulk_send_list_id) Deletes an existing bulk send list + * @method Api\BulkEnvelopesApi\GetBulkSendBatchEnvelopesOptions getBulkSendBatchEnvelopesOptions(array $options = ['set_count' => null, 'set_include' => null, 'set_order' => null, 'set_order_by' => null, 'set_search_text' => null, 'set_start_position' => null, 'set_status' => null, 'set_user_id' => null]) + * @method Models\EnvelopesInformation getBulkSendBatchEnvelopes(?string $bulk_send_batch_id, Api\BulkEnvelopesApi\GetBulkSendBatchEnvelopesOptions $options = null) Gets envelopes from a specific bulk send batch + * @method Models\BulkSendBatchStatus getBulkSendBatchStatus(?string $bulk_send_batch_id) Gets a specific bulk send batch status + * @method Api\BulkEnvelopesApi\GetBulkSendBatchesOptions getBulkSendBatchesOptions(array $options = ['set_batch_ids' => null, 'set_count' => null, 'set_search_text' => null, 'set_start_position' => null, 'set_status' => null]) * @method Models\BulkSendBatchSummaries getBulkSendBatches(Api\BulkEnvelopesApi\GetBulkSendBatchesOptions $options = null) Returns a list of bulk send batch satuses initiated by account - * @method Models\BulkSendingList getBulkSendList(string $bulk_send_list_id) Gets a specific bulk send list + * @method Models\BulkSendingList getBulkSendList(?string $bulk_send_list_id) Gets a specific bulk send list * @method Models\BulkSendingListSummaries getBulkSendLists() Lists top - * @method Api\BulkEnvelopesApi\GetRecipientsOptions getRecipientsOptions(array $options = ['set_include_tabs' => null, 'set_start_position' => null]) - * @method Models\BulkRecipientsResponse getRecipients(string $envelope_id, string $recipient_id, Api\BulkEnvelopesApi\GetRecipientsOptions $options = null) Gets the bulk recipient file from an envelope - * @method Models\BulkSendingList updateBulkSendList(string $bulk_send_list_id, Models\BulkSendingList $bulk_sending_list = null) Updates an existing bulk send list - * @method Models\BulkRecipientsSummaryResponse updateRecipients(string $envelope_id, string $recipient_id, string $bulk_recipients_request) Adds or replaces envelope bulk recipients + * @method Models\BulkSendBatchStatus updateBulkSendBatchStatus(?string $bulk_send_batch_id, Models\BulkSendBatchRequest $bulk_send_batch_request = null) Put + * @method Models\BulkSendingList updateBulkSendList(?string $bulk_send_list_id, Models\BulkSendingList $bulk_sending_list = null) Updates an existing bulk send list */ class BulkEnvelopes extends BaseApi { protected $methodsWithAccountId = [ - 'callList', - 'callListWithHttpInfo', 'createBulkSendList', 'createBulkSendListWithHttpInfo', 'createBulkSendRequest', @@ -41,10 +36,8 @@ class BulkEnvelopes extends BaseApi 'createBulkSendTestRequestWithHttpInfo', 'deleteBulkSendList', 'deleteBulkSendListWithHttpInfo', - 'deleteRecipients', - 'deleteRecipientsWithHttpInfo', - 'get', - 'getWithHttpInfo', + 'getBulkSendBatchEnvelopes', + 'getBulkSendBatchEnvelopesWithHttpInfo', 'getBulkSendBatchStatus', 'getBulkSendBatchStatusWithHttpInfo', 'getBulkSendBatches', @@ -53,11 +46,9 @@ class BulkEnvelopes extends BaseApi 'getBulkSendListWithHttpInfo', 'getBulkSendLists', 'getBulkSendListsWithHttpInfo', - 'getRecipients', - 'getRecipientsWithHttpInfo', + 'updateBulkSendBatchStatus', + 'updateBulkSendBatchStatusWithHttpInfo', 'updateBulkSendList', - 'updateBulkSendListWithHttpInfo', - 'updateRecipients', - 'updateRecipientsWithHttpInfo' + 'updateBulkSendListWithHttpInfo' ]; } \ No newline at end of file diff --git a/src/Api/CloudStorage.php b/src/Api/CloudStorage.php index ad826b0..c4b3dc4 100644 --- a/src/Api/CloudStorage.php +++ b/src/Api/CloudStorage.php @@ -8,18 +8,19 @@ /** * Class CloudStorage * @method Api\CloudStorageApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\CloudStorageApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method Models\ExternalFolder callList(string $folder_id, string $service_id, string $user_id, Api\CloudStorageApi\ListOptions $options = null) Gets a list of all the items from the specified cloud storage provider - * @method Models\CloudStorageProviders createProvider(string $user_id, Models\CloudStorageProviders $cloud_storage_providers = null) Configures the redirect URL information for one or more cloud storage providers for the specified user - * @method Models\CloudStorageProviders deleteProvider(string $service_id, string $user_id) Deletes the user authentication information for the specified cloud storage provider - * @method Models\CloudStorageProviders deleteProviders(string $user_id, Models\CloudStorageProviders $cloud_storage_providers = null) Deletes the user authentication information for one or more cloud storage providers + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method Models\ExternalFolder callList(?string $folder_id, ?string $service_id, ?string $user_id, Api\CloudStorageApi\ListOptions $options = null) Gets a list of all the items from the specified cloud storage provider + * @method Models\CloudStorageProviders createProvider(?string $user_id, Models\CloudStorageProviders $cloud_storage_providers = null) Configures the redirect URL information for one or more cloud storage providers for the specified user + * @method Models\CloudStorageProviders deleteProvider(?string $service_id, ?string $user_id) Deletes the user authentication information for the specified cloud storage provider + * @method Models\CloudStorageProviders deleteProviders(?string $user_id, Models\CloudStorageProviders $cloud_storage_providers = null) Deletes the user authentication information for one or more cloud storage providers * @method Api\CloudStorageApi\GetProviderOptions getProviderOptions(array $options = ['set_redirect_url' => null]) - * @method Models\CloudStorageProviders getProvider(string $service_id, string $user_id, Api\CloudStorageApi\GetProviderOptions $options = null) Gets the specified Cloud Storage Provider configuration for the User + * @method Models\CloudStorageProviders getProvider(?string $service_id, ?string $user_id, Api\CloudStorageApi\GetProviderOptions $options = null) Gets the specified Cloud Storage Provider configuration for the User * @method Api\CloudStorageApi\ListFoldersOptions listFoldersOptions(array $options = ['set_cloud_storage_folder_path' => null, 'set_count' => null, 'set_order' => null, 'set_order_by' => null, 'set_search_text' => null, 'set_start_position' => null]) - * @method Models\ExternalFolder listFolders(string $service_id, string $user_id, Api\CloudStorageApi\ListFoldersOptions $options = null) Retrieves a list of all the items in a specified folder from the specified cloud storage provider + * @method Models\ExternalFolder listFolders(?string $service_id, ?string $user_id, Api\CloudStorageApi\ListFoldersOptions $options = null) Retrieves a list of all the items in a specified folder from the specified cloud storage provider * @method Api\CloudStorageApi\ListProvidersOptions listProvidersOptions(array $options = ['set_redirect_url' => null]) - * @method Models\CloudStorageProviders listProviders(string $user_id, Api\CloudStorageApi\ListProvidersOptions $options = null) Get the Cloud Storage Provider configuration for the specified user + * @method Models\CloudStorageProviders listProviders(?string $user_id, Api\CloudStorageApi\ListProvidersOptions $options = null) Get the Cloud Storage Provider configuration for the specified user */ class CloudStorage extends BaseApi { diff --git a/src/Api/Connect.php b/src/Api/Connect.php index a98322d..0095711 100644 --- a/src/Api/Connect.php +++ b/src/Api/Connect.php @@ -8,27 +8,29 @@ /** * Class Connect * @method Api\ConnectApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\ConnectApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\ConnectCustomConfiguration createConfiguration(Models\ConnectCustomConfiguration $connect_custom_configuration = null) Creates a connect configuration for the specified account - * @method void deleteConfiguration(string $connect_id) Deletes the specified connect configuration - * @method void deleteEventFailureLog(string $failure_id) Deletes a Connect failure log entry - * @method void deleteEventLog(string $log_id) Deletes a specified Connect log entry - * @method void deleteEventLogs() Gets a list of Connect log entries + * @method mixed deleteConfiguration(?string $connect_id) Deletes the specified connect configuration + * @method Models\ConnectDeleteFailureResult deleteEventFailureLog(?string $failure_id) Deletes a Connect failure log entry + * @method mixed deleteEventLog(?string $log_id) Deletes a specified Connect log entry + * @method mixed deleteEventLogs() Gets a list of Connect log entries * @method Models\MobileNotifierConfigurationInformation deleteMobileNotifiers(Models\MobileNotifierConfigurationInformation $mobile_notifier_configuration_information = null) Reserved - * @method Models\ConnectConfigResults getConfiguration(string $connect_id) Get a Connect Configuration Information + * @method Models\ConnectConfigResults getConfiguration(?string $connect_id) Get a Connect Configuration Information + * @method Api\ConnectApi\GetConnectAllUsersOptions getConnectAllUsersOptions(array $options = ['set_count' => null, 'set_email_substring' => null, 'set_is_recipient_connect_config' => null, 'set_start_position' => null, 'set_status' => null, 'set_user_name_substring' => null]) + * @method Models\IntegratedConnectUserInfoList getConnectAllUsers(?string $connect_id, Api\ConnectApi\GetConnectAllUsersOptions $options = null) Returns all users from the configured Connect service * @method Api\ConnectApi\GetEventLogOptions getEventLogOptions(array $options = ['set_additional_info' => null]) - * @method Models\ConnectLog getEventLog(string $log_id, Api\ConnectApi\GetEventLogOptions $options = null) Get the specified Connect log entry + * @method Models\ConnectLog getEventLog(?string $log_id, Api\ConnectApi\GetEventLogOptions $options = null) Get the specified Connect log entry * @method Models\ConnectConfigResults listConfigurations() Get Connect Configuration Information * @method Api\ConnectApi\ListEventFailureLogsOptions listEventFailureLogsOptions(array $options = ['set_from_date' => null, 'set_to_date' => null]) * @method Models\ConnectLogs listEventFailureLogs(Api\ConnectApi\ListEventFailureLogsOptions $options = null) Gets the Connect failure log information * @method Api\ConnectApi\ListEventLogsOptions listEventLogsOptions(array $options = ['set_from_date' => null, 'set_to_date' => null]) * @method Models\ConnectLogs listEventLogs(Api\ConnectApi\ListEventLogsOptions $options = null) Gets the Connect log * @method Models\MobileNotifierConfigurationInformation listMobileNotifiers() Reserved - * @method Models\ResourceInformation listTests(string $connect_id) Test connect configuration * @method Api\ConnectApi\ListUsersOptions listUsersOptions(array $options = ['set_count' => null, 'set_email_substring' => null, 'set_list_included_users' => null, 'set_start_position' => null, 'set_status' => null, 'set_user_name_substring' => null]) - * @method Models\IntegratedUserInfoList listUsers(string $connect_id, Api\ConnectApi\ListUsersOptions $options = null) Returns users from the configured Connect service - * @method Models\ConnectFailureResults retryEventForEnvelope(string $envelope_id) Republishes Connect information for the specified envelope + * @method Models\IntegratedUserInfoList listUsers(?string $connect_id, Api\ConnectApi\ListUsersOptions $options = null) Returns users from the configured Connect service + * @method Models\ConnectFailureResults retryEventForEnvelope(?string $envelope_id) Republishes Connect information for the specified envelope * @method Models\ConnectFailureResults retryEventForEnvelopes(Models\ConnectFailureFilter $connect_failure_filter = null) Republishes Connect information for multiple envelopes * @method Models\ConnectCustomConfiguration updateConfiguration(Models\ConnectCustomConfiguration $connect_custom_configuration = null) Updates a specified Connect configuration * @method Models\MobileNotifierConfigurationInformation updateMobileNotifiers(Models\MobileNotifierConfigurationInformation $mobile_notifier_configuration_information = null) Reserved @@ -50,6 +52,8 @@ class Connect extends BaseApi 'deleteMobileNotifiersWithHttpInfo', 'getConfiguration', 'getConfigurationWithHttpInfo', + 'getConnectAllUsers', + 'getConnectAllUsersWithHttpInfo', 'getEventLog', 'getEventLogWithHttpInfo', 'listConfigurations', @@ -60,8 +64,6 @@ class Connect extends BaseApi 'listEventLogsWithHttpInfo', 'listMobileNotifiers', 'listMobileNotifiersWithHttpInfo', - 'listTests', - 'listTestsWithHttpInfo', 'listUsers', 'listUsersWithHttpInfo', 'retryEventForEnvelope', diff --git a/src/Api/CustomTabs.php b/src/Api/CustomTabs.php index 0acf2ab..1d89d1f 100644 --- a/src/Api/CustomTabs.php +++ b/src/Api/CustomTabs.php @@ -8,13 +8,14 @@ /** * Class CustomTabs * @method Api\CustomTabsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\CustomTabsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\TabMetadataList callList(Api\CustomTabsApi\ListOptions $options = null) Gets a list of all account tabs * @method Models\TabMetadata create(Models\TabMetadata $tab_metadata = null) Creates a custom tab - * @method void delete(string $custom_tab_id) Deletes custom tab information - * @method Models\TabMetadata get(string $custom_tab_id) Gets custom tab information - * @method Models\TabMetadata update(string $custom_tab_id, Models\TabMetadata $tab_metadata = null) Updates custom tab information + * @method mixed delete(?string $custom_tab_id) Deletes custom tab information + * @method Models\TabMetadata get(?string $custom_tab_id) Gets custom tab information + * @method Models\TabMetadata update(?string $custom_tab_id, Models\TabMetadata $tab_metadata = null) Updates custom tab information */ class CustomTabs extends BaseApi { diff --git a/src/Api/DataFeed.php b/src/Api/DataFeed.php index 7e52d05..5a8210b 100644 --- a/src/Api/DataFeed.php +++ b/src/Api/DataFeed.php @@ -8,9 +8,10 @@ /** * Class DataFeed * @method Api\DataFeedApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\DataFeedApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method void getDataFeedElement(string $data_feed_element_id) Retrieves a Datafeed element by Id + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method mixed getDataFeedElement(?string $data_feed_element_id) Retrieves a Datafeed element by Id */ class DataFeed extends BaseApi { diff --git a/src/Api/Diagnostics.php b/src/Api/Diagnostics.php index f2736a8..b451cf3 100644 --- a/src/Api/Diagnostics.php +++ b/src/Api/Diagnostics.php @@ -8,10 +8,11 @@ /** * Class Diagnostics * @method Api\DiagnosticsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\DiagnosticsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method void deleteRequestLogs() Deletes the request log files - * @method \SplFileObject getRequestLog(string $request_log_id) Gets a request logging log file + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method mixed deleteRequestLogs() Deletes the request log files + * @method \SplFileObject getRequestLog(?string $request_log_id) Gets a request logging log file * @method Models\DiagnosticsSettingsInformation getRequestLogSettings() Gets the API request logging settings * @method Models\ResourceInformation getResources() Lists resources for REST version specified * @method Models\ServiceInformation getService() Retrieves the available REST API versions diff --git a/src/Api/EmailArchive.php b/src/Api/EmailArchive.php index 915c7d1..c9ecd3a 100644 --- a/src/Api/EmailArchive.php +++ b/src/Api/EmailArchive.php @@ -8,12 +8,13 @@ /** * Class EmailArchive * @method Api\EmailArchiveApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\EmailArchiveApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\BccEmailArchive createBCCEmailArchive(Models\BccEmailArchive $bcc_email_archive = null) Creates a blind carbon copy email archive entry - * @method void deleteBCCEmailArchive(string $bcc_email_archive_id) Delete a blind carbon copy email archive for an account + * @method mixed deleteBCCEmailArchive(?string $bcc_email_archive_id) Delete a blind carbon copy email archive for an account * @method Api\EmailArchiveApi\GetBCCEmailArchiveHistoryListOptions getBCCEmailArchiveHistoryListOptions(array $options = ['set_count' => null, 'set_start_position' => null]) - * @method Models\BccEmailArchiveHistoryList getBCCEmailArchiveHistoryList(string $bcc_email_archive_id, Api\EmailArchiveApi\GetBCCEmailArchiveHistoryListOptions $options = null) Get the blind carbon copy email archive history entries for the specified archive + * @method Models\BccEmailArchiveHistoryList getBCCEmailArchiveHistoryList(?string $bcc_email_archive_id, Api\EmailArchiveApi\GetBCCEmailArchiveHistoryListOptions $options = null) Get the blind carbon copy email archive history entries for the specified archive * @method Api\EmailArchiveApi\GetBCCEmailArchiveListOptions getBCCEmailArchiveListOptions(array $options = ['set_count' => null, 'set_start_position' => null]) * @method Models\BccEmailArchiveList getBCCEmailArchiveList(Api\EmailArchiveApi\GetBCCEmailArchiveListOptions $options = null) Get the blind carbon copy email archive entries owned by the specified account */ diff --git a/src/Api/Envelopes.php b/src/Api/Envelopes.php index 0f0bcf6..801a1a7 100644 --- a/src/Api/Envelopes.php +++ b/src/Api/Envelopes.php @@ -8,139 +8,145 @@ /** * Class Envelopes * @method Api\EnvelopesApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\EnvelopesApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Api\EnvelopesApi\ApplyTemplateOptions applyTemplateOptions(array $options = ['set_preserve_template_recipient' => null]) - * @method Models\DocumentTemplateList applyTemplate(string $envelope_id, Models\DocumentTemplateList $document_template_list = null, Api\EnvelopesApi\ApplyTemplateOptions $options = null) Adds templates to an envelope + * @method Models\DocumentTemplateList applyTemplate(?string $envelope_id, Models\DocumentTemplateList $document_template_list = null, Api\EnvelopesApi\ApplyTemplateOptions $options = null) Adds templates to an envelope * @method Api\EnvelopesApi\ApplyTemplateToDocumentOptions applyTemplateToDocumentOptions(array $options = ['set_preserve_template_recipient' => null]) - * @method Models\DocumentTemplateList applyTemplateToDocument(string $document_id, string $envelope_id, Models\DocumentTemplateList $document_template_list = null, Api\EnvelopesApi\ApplyTemplateToDocumentOptions $options = null) Adds templates to a document in an envelope + * @method Models\DocumentTemplateList applyTemplateToDocument(?string $document_id, ?string $envelope_id, Models\DocumentTemplateList $document_template_list = null, Api\EnvelopesApi\ApplyTemplateToDocumentOptions $options = null) Adds templates to a document in an envelope * @method Models\ChunkedUploadResponse createChunkedUpload(Models\ChunkedUploadRequest $chunked_upload_request = null) Initiate a new ChunkedUpload * @method Models\ViewUrl createConsoleView(Models\ConsoleViewRequest $console_view_request = null) Returns a URL to the authentication view UI - * @method Models\ViewUrl createCorrectView(string $envelope_id, Models\CorrectViewRequest $correct_view_request = null) Returns a URL to the envelope correction UI - * @method Models\CustomFields createCustomFields(string $envelope_id, Models\CustomFields $custom_fields = null) Updates envelope custom fields for an envelope - * @method Models\DocumentFieldsInformation createDocumentFields(string $document_id, string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Creates custom document fields in an existing envelope document - * @method Models\DocumentHtmlDefinitions createDocumentResponsiveHtmlPreview(string $document_id, string $envelope_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for a document in an envelope - * @method Models\Tabs createDocumentTabs(string $document_id, string $envelope_id, Models\Tabs $tabs = null) Adds the tabs to an envelope document - * @method Models\ViewUrl createEditView(string $envelope_id, Models\ReturnUrlRequest $return_url_request = null) Returns a URL to the edit view UI - * @method Models\EmailSettings createEmailSettings(string $envelope_id, Models\EmailSettings $email_settings = null) Adds email setting overrides to an envelope + * @method Models\ViewUrl createCorrectView(?string $envelope_id, Models\CorrectViewRequest $correct_view_request = null) Returns a URL to the envelope correction UI + * @method Models\CustomFields createCustomFields(?string $envelope_id, Models\CustomFields $custom_fields = null) Updates envelope custom fields for an envelope + * @method Models\DocumentFieldsInformation createDocumentFields(?string $document_id, ?string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Creates custom document fields in an existing envelope document + * @method Models\DocumentHtmlDefinitions createDocumentResponsiveHtmlPreview(?string $document_id, ?string $envelope_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for a document in an envelope + * @method Models\Tabs createDocumentTabs(?string $document_id, ?string $envelope_id, Models\Tabs $tabs = null) Adds the tabs to an envelope document + * @method Models\ViewUrl createEditView(?string $envelope_id, Models\ReturnUrlRequest $return_url_request = null) Returns a URL to the edit view UI + * @method Models\EmailSettings createEmailSettings(?string $envelope_id, Models\EmailSettings $email_settings = null) Adds email setting overrides to an envelope * @method Api\EnvelopesApi\CreateEnvelopeOptions createEnvelopeOptions(array $options = ['set_cdse_mode' => null, 'set_change_routing_order' => null, 'set_completed_documents_only' => null, 'set_merge_roles_on_draft' => null, 'set_tab_label_exact_matches' => null]) * @method Models\EnvelopeSummary createEnvelope(Models\EnvelopeDefinition $envelope_definition = null, Api\EnvelopesApi\CreateEnvelopeOptions $options = null) Creates an envelope - * @method Models\CommentHistoryResult createEnvelopeComments(string $envelope_id, Models\CommentsPublish $comments_publish = null) Posts a list of comments for authorized user - * @method Models\ViewUrl createEnvelopeRecipientPreview(string $envelope_id, Models\RecipientPreviewRequest $recipient_preview_request = null) Provides a URL to start a recipient view of the Envelope UI - * @method Models\ViewUrl createEnvelopeRecipientSharedView(string $envelope_id, Models\RecipientViewRequest $recipient_view_request = null) Provides a URL to start a shared recipient view of the Envelope UI + * @method Models\CommentHistoryResult createEnvelopeComments(?string $envelope_id, Models\CommentsPublish $comments_publish = null) Posts a list of comments for authorized user + * @method Models\ViewUrl createEnvelopeRecipientPreview(?string $envelope_id, Models\RecipientPreviewRequest $recipient_preview_request = null) Provides a URL to start a recipient view of the Envelope UI + * @method Models\ViewUrl createEnvelopeRecipientSharedView(?string $envelope_id, Models\RecipientViewRequest $recipient_view_request = null) Provides a URL to start a shared recipient view of the Envelope UI * @method Models\EnvelopeTransferRuleInformation createEnvelopeTransferRules(Models\EnvelopeTransferRuleRequest $envelope_transfer_rule_request = null) Add envelope transfer rules to an account - * @method Models\LockInformation createLock(string $envelope_id, Models\LockRequest $lock_request = null) Lock an envelope + * @method Models\LockInformation createLock(?string $envelope_id, Models\LockRequest $lock_request = null) Lock an envelope * @method Api\EnvelopesApi\CreateRecipientOptions createRecipientOptions(array $options = ['set_resend_envelope' => null]) - * @method Models\Recipients createRecipient(string $envelope_id, Models\Recipients $recipients = null, Api\EnvelopesApi\CreateRecipientOptions $options = null) Adds one or more recipients to an envelope - * @method Models\ProofServiceViewLink createRecipientProofFileLink(string $envelope_id, string $recipient_id) Returns a link to access to the identity events stored in the proof service related to this recipient - * @method Models\ProofServiceResourceToken createRecipientProofFileResourceToken(string $envelope_id, string $recipient_id, string $token_scopes) Returns a resource token to get access to the identity events stored in the proof service related to this recipient - * @method Models\ViewUrl createRecipientView(string $envelope_id, Models\RecipientViewRequest $recipient_view_request = null) Returns a URL to the recipient view UI - * @method Models\DocumentHtmlDefinitions createResponsiveHtmlPreview(string $envelope_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for all documents in an envelope - * @method Models\ViewUrl createSenderView(string $envelope_id, Models\ReturnUrlRequest $return_url_request = null) Returns a URL to the sender view UI - * @method Models\Tabs createTabs(string $envelope_id, string $recipient_id, Models\Tabs $tabs = null) Adds tabs for a recipient - * @method Models\EnvelopeAttachmentsResult deleteAttachments(string $envelope_id, Models\EnvelopeAttachmentsRequest $envelope_attachments_request = null) Delete one or more attachments from a DRAFT envelope - * @method Models\ChunkedUploadResponse deleteChunkedUpload(string $chunked_upload_id) Delete an existing ChunkedUpload - * @method Models\CustomFields deleteCustomFields(string $envelope_id, Models\CustomFields $custom_fields = null) Deletes envelope custom fields for draft and in - * @method Models\DocumentFieldsInformation deleteDocumentFields(string $document_id, string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Deletes custom document fields from an existing envelope document - * @method void deleteDocumentPage(string $document_id, string $envelope_id, string $page_number) Deletes a page from a document in an envelope - * @method Models\Tabs deleteDocumentTabs(string $document_id, string $envelope_id, Models\Tabs $tabs = null) Deletes tabs from an envelope document - * @method Models\EnvelopeDocumentsResult deleteDocuments(string $envelope_id, Models\EnvelopeDefinition $envelope_definition = null) Deletes documents from a draft envelope - * @method Models\EmailSettings deleteEmailSettings(string $envelope_id) Deletes the email setting overrides for an envelope - * @method void deleteEnvelopeCorrectView(string $envelope_id, Models\CorrectViewRequest $correct_view_request = null) Revokes the correction view URL to the Envelope UI - * @method void deleteEnvelopeTransferRules(string $envelope_transfer_rule_id) Delete envelope transfer rules for an account - * @method void deleteEnvelopeWorkflowDefinition(string $envelope_id) Delete the workflow definition for an envelope - * @method Models\LockInformation deleteLock(string $envelope_id) Deletes an envelope lock - * @method Models\Recipients deleteRecipient(string $envelope_id, string $recipient_id) Deletes a recipient from an envelope - * @method Models\Recipients deleteRecipients(string $envelope_id, Models\Recipients $recipients = null) Deletes recipients from an envelope - * @method Models\Tabs deleteTabs(string $envelope_id, string $recipient_id, Models\Tabs $tabs = null) Deletes the tabs associated with a recipient - * @method void deleteTemplateWorkflowDefinition(string $template_id) Delete the workflow definition for a template - * @method void deleteTemplatesFromDocument(string $document_id, string $envelope_id, string $template_id) Deletes a template from a document in an existing envelope - * @method void getAttachment(string $attachment_id, string $envelope_id) Retrieves an attachment from the envelope - * @method Models\EnvelopeAttachmentsResult getAttachments(string $envelope_id) Returns a list of attachments associated with the specified envelope + * @method Models\Recipients createRecipient(?string $envelope_id, Models\Recipients $recipients = null, Api\EnvelopesApi\CreateRecipientOptions $options = null) Adds one or more recipients to an envelope + * @method Models\ViewUrl createRecipientManualReviewView(?string $envelope_id, ?string $recipient_id) Provides a link to access the Identity manual review related to a recipient + * @method Models\ProofServiceViewLink createRecipientProofFileLink(?string $envelope_id, ?string $recipient_id) Returns a link to access to the identity events stored in the proof service related to this recipient + * @method Models\ProofServiceResourceToken createRecipientProofFileResourceToken(?string $envelope_id, ?string $recipient_id, ?string $token_scopes) Returns a resource token to get access to the identity events stored in the proof service related to this recipient + * @method Models\ViewUrl createRecipientView(?string $envelope_id, Models\RecipientViewRequest $recipient_view_request = null) Returns a URL to the recipient view UI + * @method Models\DocumentHtmlDefinitions createResponsiveHtmlPreview(?string $envelope_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for all documents in an envelope + * @method Models\ViewUrl createSenderView(?string $envelope_id, Models\ReturnUrlRequest $return_url_request = null) Returns a URL to the sender view UI + * @method Models\Tabs createTabs(?string $envelope_id, ?string $recipient_id, Models\Tabs $tabs = null) Adds tabs for a recipient + * @method Models\EnvelopeAttachmentsResult deleteAttachments(?string $envelope_id, Models\EnvelopeAttachmentsRequest $envelope_attachments_request = null) Delete one or more attachments from a DRAFT envelope + * @method Models\ChunkedUploadResponse deleteChunkedUpload(?string $chunked_upload_id) Delete an existing ChunkedUpload + * @method Models\CustomFields deleteCustomFields(?string $envelope_id, Models\CustomFields $custom_fields = null) Deletes envelope custom fields for draft and in + * @method Models\DocumentFieldsInformation deleteDocumentFields(?string $document_id, ?string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Deletes custom document fields from an existing envelope document + * @method mixed deleteDocumentPage(?string $document_id, ?string $envelope_id, ?string $page_number) Deletes a page from a document in an envelope + * @method Models\Tabs deleteDocumentTabs(?string $document_id, ?string $envelope_id, Models\Tabs $tabs = null) Deletes tabs from an envelope document + * @method Models\EnvelopeDocumentsResult deleteDocuments(?string $envelope_id, Models\EnvelopeDefinition $envelope_definition = null) Deletes documents from a draft envelope + * @method Models\EmailSettings deleteEmailSettings(?string $envelope_id) Deletes the email setting overrides for an envelope + * @method mixed deleteEnvelopeCorrectView(?string $envelope_id, Models\CorrectViewRequest $correct_view_request = null) Revokes the correction view URL to the Envelope UI + * @method mixed deleteEnvelopeTransferRules(?string $envelope_transfer_rule_id) Delete envelope transfer rules for an account + * @method mixed deleteEnvelopeWorkflowDefinition(?string $envelope_id) Delete the workflow definition for an envelope + * @method Models\LockInformation deleteLock(?string $envelope_id) Deletes an envelope lock + * @method Models\Recipients deleteRecipient(?string $envelope_id, ?string $recipient_id) Deletes a recipient from an envelope + * @method Models\Recipients deleteRecipients(?string $envelope_id, Models\Recipients $recipients = null) Deletes recipients from an envelope + * @method Models\Tabs deleteTabs(?string $envelope_id, ?string $recipient_id, Models\Tabs $tabs = null) Deletes the tabs associated with a recipient + * @method mixed deleteTemplateWorkflowDefinition(?string $template_id) Delete the workflow definition for a template + * @method mixed deleteTemplatesFromDocument(?string $document_id, ?string $envelope_id, ?string $template_id) Deletes a template from a document in an existing envelope + * @method mixed getAttachment(?string $attachment_id, ?string $envelope_id) Retrieves an attachment from the envelope + * @method Models\EnvelopeAttachmentsResult getAttachments(?string $envelope_id) Returns a list of attachments associated with the specified envelope * @method Api\EnvelopesApi\GetChunkedUploadOptions getChunkedUploadOptions(array $options = ['set_include' => null]) - * @method Models\ChunkedUploadResponse getChunkedUpload(string $chunked_upload_id, Api\EnvelopesApi\GetChunkedUploadOptions $options = null) Retrieves the current metadata of a ChunkedUpload + * @method Models\ChunkedUploadResponse getChunkedUpload(?string $chunked_upload_id, Api\EnvelopesApi\GetChunkedUploadOptions $options = null) Retrieves the current metadata of a ChunkedUpload * @method Api\EnvelopesApi\GetCommentsTranscriptOptions getCommentsTranscriptOptions(array $options = ['set_encoding' => null]) - * @method \SplFileObject getCommentsTranscript(string $envelope_id, Api\EnvelopesApi\GetCommentsTranscriptOptions $options = null) Gets comment transcript for envelope and user + * @method \SplFileObject getCommentsTranscript(?string $envelope_id, Api\EnvelopesApi\GetCommentsTranscriptOptions $options = null) Gets comment transcript for envelope and user * @method Api\EnvelopesApi\GetConsumerDisclosureOptions getConsumerDisclosureOptions(array $options = ['set_lang_code2' => null]) - * @method Models\ConsumerDisclosure getConsumerDisclosure(string $envelope_id, string $lang_code, string $recipient_id, Api\EnvelopesApi\GetConsumerDisclosureOptions $options = null) Reserved + * @method Models\ConsumerDisclosure getConsumerDisclosure(?string $envelope_id, ?string $lang_code, ?string $recipient_id, Api\EnvelopesApi\GetConsumerDisclosureOptions $options = null) Reserved * @method Api\EnvelopesApi\GetConsumerDisclosureDefaultOptions getConsumerDisclosureDefaultOptions(array $options = ['set_lang_code' => null]) - * @method Models\ConsumerDisclosure getConsumerDisclosureDefault(string $envelope_id, string $recipient_id, Api\EnvelopesApi\GetConsumerDisclosureDefaultOptions $options = null) Gets the Electronic Record and Signature Disclosure associated with the account + * @method Models\ConsumerDisclosure getConsumerDisclosureDefault(?string $envelope_id, ?string $recipient_id, Api\EnvelopesApi\GetConsumerDisclosureDefaultOptions $options = null) Gets the Electronic Record and Signature Disclosure associated with the account * @method Api\EnvelopesApi\GetDocumentOptions getDocumentOptions(array $options = ['set_certificate' => null, 'set_documents_by_userid' => null, 'set_encoding' => null, 'set_encrypt' => null, 'set_language' => null, 'set_recipient_id' => null, 'set_shared_user_id' => null, 'set_show_changes' => null, 'set_watermark' => null]) - * @method \SplFileObject getDocument(string $document_id, string $envelope_id, Api\EnvelopesApi\GetDocumentOptions $options = null) Gets a document from an envelope + * @method \SplFileObject getDocument(?string $document_id, ?string $envelope_id, Api\EnvelopesApi\GetDocumentOptions $options = null) Gets a document from an envelope * @method Api\EnvelopesApi\GetDocumentPageImageOptions getDocumentPageImageOptions(array $options = ['set_dpi' => null, 'set_max_height' => null, 'set_max_width' => null, 'set_show_changes' => null]) - * @method \SplFileObject getDocumentPageImage(string $document_id, string $envelope_id, string $page_number, Api\EnvelopesApi\GetDocumentPageImageOptions $options = null) Gets a page image from an envelope for display - * @method Api\EnvelopesApi\GetDocumentTabsOptions getDocumentTabsOptions(array $options = ['set_page_numbers' => null]) - * @method Models\Tabs getDocumentTabs(string $document_id, string $envelope_id, Api\EnvelopesApi\GetDocumentTabsOptions $options = null) Returns tabs on the document - * @method Models\EmailSettings getEmailSettings(string $envelope_id) Gets the email setting overrides for an envelope + * @method \SplFileObject getDocumentPageImage(?string $document_id, ?string $envelope_id, ?string $page_number, Api\EnvelopesApi\GetDocumentPageImageOptions $options = null) Gets a page image from an envelope for display + * @method Api\EnvelopesApi\GetDocumentResponsiveHtmlOptions getDocumentResponsiveHtmlOptions(array $options = ['set_include_anchor_tab_locations' => null]) + * @method Models\DocumentHtmlDefinitionOriginals getDocumentResponsiveHtml(?string $document_id, ?string $envelope_id, Api\EnvelopesApi\GetDocumentResponsiveHtmlOptions $options = null) Get Responsive HTML for a document in an envelope + * @method Api\EnvelopesApi\GetDocumentTabsOptions getDocumentTabsOptions(array $options = ['set_include_metadata' => null, 'set_page_numbers' => null]) + * @method Models\Tabs getDocumentTabs(?string $document_id, ?string $envelope_id, Api\EnvelopesApi\GetDocumentTabsOptions $options = null) Returns tabs on the document + * @method Models\EmailSettings getEmailSettings(?string $envelope_id) Gets the email setting overrides for an envelope * @method Api\EnvelopesApi\GetEnvelopeOptions getEnvelopeOptions(array $options = ['set_advanced_update' => null, 'set_include' => null]) - * @method Models\Envelope getEnvelope(string $envelope_id, Api\EnvelopesApi\GetEnvelopeOptions $options = null) Gets the status of a envelope - * @method Models\DocumentHtmlDefinitionOriginals getEnvelopeDocumentHtmlDefinitions(string $document_id, string $envelope_id) Get the Original HTML Definition used to generate the Responsive HTML for a given document - * @method Models\DocumentHtmlDefinitionOriginals getEnvelopeHtmlDefinitions(string $envelope_id) Get the Original HTML Definition used to generate the Responsive HTML for the envelope + * @method Models\Envelope getEnvelope(?string $envelope_id, Api\EnvelopesApi\GetEnvelopeOptions $options = null) Gets the status of a envelope + * @method Models\DocumentHtmlDefinitionOriginals getEnvelopeDocumentHtmlDefinitions(?string $document_id, ?string $envelope_id) Get the Original HTML Definition used to generate the Responsive HTML for a given document + * @method Models\DocumentHtmlDefinitionOriginals getEnvelopeHtmlDefinitions(?string $envelope_id) Get the Original HTML Definition used to generate the Responsive HTML for the envelope * @method Api\EnvelopesApi\GetEnvelopeTransferRulesOptions getEnvelopeTransferRulesOptions(array $options = ['set_count' => null, 'set_start_position' => null]) * @method Models\EnvelopeTransferRuleInformation getEnvelopeTransferRules(Api\EnvelopesApi\GetEnvelopeTransferRulesOptions $options = null) Returns a list of envelope transfer rules in the specified account - * @method Models\Workflow getEnvelopeWorkflowDefinition(string $envelope_id) Returns the workflow definition for an envelope - * @method Models\EnvelopeFormData getFormData(string $envelope_id) Returns envelope form data for an existing envelope - * @method Models\LockInformation getLock(string $envelope_id) Gets envelope lock information - * @method Models\Notification getNotificationSettings(string $envelope_id) Gets envelope notification information - * @method Models\Tabs getPageTabs(string $document_id, string $envelope_id, string $page_number) Returns tabs on the specified page + * @method Models\Workflow getEnvelopeWorkflowDefinition(?string $envelope_id) Returns the workflow definition for an envelope + * @method Models\EnvelopeFormData getFormData(?string $envelope_id) Returns envelope form data for an existing envelope + * @method Models\LockInformation getLock(?string $envelope_id) Gets envelope lock information + * @method Models\Notification getNotificationSettings(?string $envelope_id) Gets envelope notification information + * @method Models\Tabs getPageTabs(?string $document_id, ?string $envelope_id, ?string $page_number) Returns tabs on the specified page * @method Api\EnvelopesApi\GetPagesOptions getPagesOptions(array $options = ['set_count' => null, 'set_dpi' => null, 'set_max_height' => null, 'set_max_width' => null, 'set_nocache' => null, 'set_show_changes' => null, 'set_start_position' => null]) - * @method Models\PageImages getPages(string $document_id, string $envelope_id, Api\EnvelopesApi\GetPagesOptions $options = null) Returns document page image(s) based on input - * @method Models\DocumentVisibilityList getRecipientDocumentVisibility(string $envelope_id, string $recipient_id) Returns document visibility for the recipients + * @method Models\PageImages getPages(?string $document_id, ?string $envelope_id, Api\EnvelopesApi\GetPagesOptions $options = null) Returns document page image(s) based on input + * @method Models\DocumentVisibilityList getRecipientDocumentVisibility(?string $envelope_id, ?string $recipient_id) Returns document visibility for the recipients * @method Api\EnvelopesApi\GetRecipientInitialsImageOptions getRecipientInitialsImageOptions(array $options = ['set_include_chrome' => null]) - * @method \SplFileObject getRecipientInitialsImage(string $envelope_id, string $recipient_id, Api\EnvelopesApi\GetRecipientInitialsImageOptions $options = null) Gets the initials image for a user - * @method Models\UserSignature getRecipientSignature(string $envelope_id, string $recipient_id) Gets signature information for a signer or sign + * @method \SplFileObject getRecipientInitialsImage(?string $envelope_id, ?string $recipient_id, Api\EnvelopesApi\GetRecipientInitialsImageOptions $options = null) Gets the initials image for a user + * @method Models\UserSignature getRecipientSignature(?string $envelope_id, ?string $recipient_id) Gets signature information for a signer or sign * @method Api\EnvelopesApi\GetRecipientSignatureImageOptions getRecipientSignatureImageOptions(array $options = ['set_include_chrome' => null]) - * @method \SplFileObject getRecipientSignatureImage(string $envelope_id, string $recipient_id, Api\EnvelopesApi\GetRecipientSignatureImageOptions $options = null) Retrieve signature image information for a signer - * @method void getTabsBlob(string $envelope_id) Get encrypted tabs for envelope - * @method Models\DocumentVisibilityList getTemplateRecipientDocumentVisibility(string $recipient_id, string $template_id) Returns document visibility for the recipients - * @method Models\Workflow getTemplateWorkflowDefinition(string $template_id) Returns the workflow definition for a template - * @method Models\EnvelopeAuditEventResponse listAuditEvents(string $envelope_id) Gets the envelope audit events for an envelope - * @method Models\CustomFieldsEnvelope listCustomFields(string $envelope_id) Gets the custom field information for the specified envelope - * @method Models\DocumentFieldsInformation listDocumentFields(string $document_id, string $envelope_id) Gets the custom document fields from an existing envelope document + * @method \SplFileObject getRecipientSignatureImage(?string $envelope_id, ?string $recipient_id, Api\EnvelopesApi\GetRecipientSignatureImageOptions $options = null) Retrieve signature image information for a signer + * @method Api\EnvelopesApi\GetResponsiveHtmlOptions getResponsiveHtmlOptions(array $options = ['set_include_anchor_tab_locations' => null]) + * @method Models\DocumentHtmlDefinitionOriginals getResponsiveHtml(?string $envelope_id, Api\EnvelopesApi\GetResponsiveHtmlOptions $options = null) Get Responsive HTML for all documents in an envelope + * @method mixed getTabsBlob(?string $envelope_id) Get encrypted tabs for envelope + * @method Models\DocumentVisibilityList getTemplateRecipientDocumentVisibility(?string $recipient_id, ?string $template_id) Returns document visibility for the recipients + * @method Models\Workflow getTemplateWorkflowDefinition(?string $template_id) Returns the workflow definition for a template + * @method Models\EnvelopeAuditEventResponse listAuditEvents(?string $envelope_id) Gets the envelope audit events for an envelope + * @method Models\CustomFieldsEnvelope listCustomFields(?string $envelope_id) Gets the custom field information for the specified envelope + * @method Models\DocumentFieldsInformation listDocumentFields(?string $document_id, ?string $envelope_id) Gets the custom document fields from an existing envelope document * @method Api\EnvelopesApi\ListDocumentsOptions listDocumentsOptions(array $options = ['set_documents_by_userid' => null, 'set_include_document_size' => null, 'set_include_metadata' => null, 'set_include_tabs' => null, 'set_recipient_id' => null, 'set_shared_user_id' => null]) - * @method Models\EnvelopeDocumentsResult listDocuments(string $envelope_id, Api\EnvelopesApi\ListDocumentsOptions $options = null) Gets a list of envelope documents + * @method Models\EnvelopeDocumentsResult listDocuments(?string $envelope_id, Api\EnvelopesApi\ListDocumentsOptions $options = null) Gets a list of envelope documents * @method Api\EnvelopesApi\ListRecipientsOptions listRecipientsOptions(array $options = ['set_include_anchor_tab_locations' => null, 'set_include_extended' => null, 'set_include_metadata' => null, 'set_include_tabs' => null]) - * @method Models\Recipients listRecipients(string $envelope_id, Api\EnvelopesApi\ListRecipientsOptions $options = null) Gets the status of recipients for an envelope + * @method Models\Recipients listRecipients(?string $envelope_id, Api\EnvelopesApi\ListRecipientsOptions $options = null) Gets the status of recipients for an envelope * @method Api\EnvelopesApi\ListStatusOptions listStatusOptions(array $options = ['set_ac_status' => null, 'set_block' => null, 'set_count' => null, 'set_email' => null, 'set_envelope_ids' => null, 'set_from_date' => null, 'set_from_to_status' => null, 'set_start_position' => null, 'set_status' => null, 'set_to_date' => null, 'set_transaction_ids' => null, 'set_user_name' => null]) * @method Models\EnvelopesInformation listStatus(Models\EnvelopeIdsRequest $envelope_ids_request = null, Api\EnvelopesApi\ListStatusOptions $options = null) Gets the envelope status for the specified envelopes * @method Api\EnvelopesApi\ListStatusChangesOptions listStatusChangesOptions(array $options = ['set_ac_status' => null, 'set_block' => null, 'set_cdse_mode' => null, 'set_continuation_token' => null, 'set_count' => null, 'set_custom_field' => null, 'set_email' => null, 'set_envelope_ids' => null, 'set_exclude' => null, 'set_folder_ids' => null, 'set_folder_types' => null, 'set_from_date' => null, 'set_from_to_status' => null, 'set_include' => null, 'set_include_purge_information' => null, 'set_intersecting_folder_ids' => null, 'set_last_queried_date' => null, 'set_order' => null, 'set_order_by' => null, 'set_powerformids' => null, 'set_query_budget' => null, 'set_requester_date_format' => null, 'set_search_text' => null, 'set_start_position' => null, 'set_status' => null, 'set_to_date' => null, 'set_transaction_ids' => null, 'set_user_filter' => null, 'set_user_id' => null, 'set_user_name' => null]) * @method Models\EnvelopesInformation listStatusChanges(Api\EnvelopesApi\ListStatusChangesOptions $options = null) Gets status changes for one or more envelopes * @method Api\EnvelopesApi\ListTabsOptions listTabsOptions(array $options = ['set_include_anchor_tab_locations' => null, 'set_include_metadata' => null]) - * @method Models\Tabs listTabs(string $envelope_id, string $recipient_id, Api\EnvelopesApi\ListTabsOptions $options = null) Gets the tabs information for a signer or sign + * @method Models\Tabs listTabs(?string $envelope_id, ?string $recipient_id, Api\EnvelopesApi\ListTabsOptions $options = null) Gets the tabs information for a signer or sign * @method Api\EnvelopesApi\ListTemplatesOptions listTemplatesOptions(array $options = ['set_include' => null]) - * @method Models\TemplateInformation listTemplates(string $envelope_id, Api\EnvelopesApi\ListTemplatesOptions $options = null) Get List of Templates used in an Envelope + * @method Models\TemplateInformation listTemplates(?string $envelope_id, Api\EnvelopesApi\ListTemplatesOptions $options = null) Get List of Templates used in an Envelope * @method Api\EnvelopesApi\ListTemplatesForDocumentOptions listTemplatesForDocumentOptions(array $options = ['set_include' => null]) - * @method Models\TemplateInformation listTemplatesForDocument(string $document_id, string $envelope_id, Api\EnvelopesApi\ListTemplatesForDocumentOptions $options = null) Gets the templates associated with a document in an existing envelope - * @method Models\EnvelopeAttachmentsResult putAttachment(string $attachment_id, string $envelope_id, Models\Attachment $attachment = null) Add an attachment to a DRAFT or IN - * @method Models\EnvelopeAttachmentsResult putAttachments(string $envelope_id, Models\EnvelopeAttachmentsRequest $envelope_attachments_request = null) Add one or more attachments to a DRAFT or IN - * @method void rotateDocumentPage(string $document_id, string $envelope_id, string $page_number, Models\PageRequest $page_request = null) Rotates page image from an envelope for display + * @method Models\TemplateInformation listTemplatesForDocument(?string $document_id, ?string $envelope_id, Api\EnvelopesApi\ListTemplatesForDocumentOptions $options = null) Gets the templates associated with a document in an existing envelope + * @method Models\EnvelopeAttachmentsResult putAttachment(?string $attachment_id, ?string $envelope_id, Models\Attachment $attachment = null) Add an attachment to a DRAFT or IN + * @method Models\EnvelopeAttachmentsResult putAttachments(?string $envelope_id, Models\EnvelopeAttachmentsRequest $envelope_attachments_request = null) Add one or more attachments to a DRAFT or IN + * @method mixed rotateDocumentPage(?string $document_id, ?string $envelope_id, ?string $page_number, Models\PageRequest $page_request = null) Rotates page image from an envelope for display * @method Api\EnvelopesApi\UpdateOptions updateOptions(array $options = ['set_advanced_update' => null, 'set_resend_envelope' => null]) - * @method Models\EnvelopeUpdateSummary update(string $envelope_id, Models\Envelope $envelope = null, Api\EnvelopesApi\UpdateOptions $options = null) Send Draft Envelope + * @method Models\EnvelopeUpdateSummary update(?string $envelope_id, Models\Envelope $envelope = null, Api\EnvelopesApi\UpdateOptions $options = null) Send Draft Envelope * @method Api\EnvelopesApi\UpdateChunkedUploadOptions updateChunkedUploadOptions(array $options = ['set_action' => null]) - * @method Models\ChunkedUploadResponse updateChunkedUpload(string $chunked_upload_id, Api\EnvelopesApi\UpdateChunkedUploadOptions $options = null) Integrity - * @method Models\ChunkedUploadResponse updateChunkedUploadPart(string $chunked_upload_id, string $chunked_upload_part_seq, Models\ChunkedUploadRequest $chunked_upload_request = null) Add a chunk - * @method Models\CustomFields updateCustomFields(string $envelope_id, Models\CustomFields $custom_fields = null) Updates envelope custom fields in an envelope - * @method Models\EnvelopeDocument updateDocument(string $document_id, string $envelope_id) Adds a document to an existing draft envelope - * @method Models\DocumentFieldsInformation updateDocumentFields(string $document_id, string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Updates existing custom document fields in an existing envelope document - * @method Models\Tabs updateDocumentTabs(string $document_id, string $envelope_id, Models\Tabs $tabs = null) Updates the tabs for an envelope document - * @method Models\EnvelopeDocumentsResult updateDocuments(string $envelope_id, Models\EnvelopeDefinition $envelope_definition = null) Adds one or more documents to an existing envelope document - * @method Models\EmailSettings updateEmailSettings(string $envelope_id, Models\EmailSettings $email_settings = null) Updates the email setting overrides for an envelope - * @method Models\EnvelopeTransferRule updateEnvelopeTransferRule(string $envelope_transfer_rule_id, Models\EnvelopeTransferRule $envelope_transfer_rule = null) Update an envelope transfer rule for an account + * @method Models\ChunkedUploadResponse updateChunkedUpload(?string $chunked_upload_id, Api\EnvelopesApi\UpdateChunkedUploadOptions $options = null) Integrity + * @method Models\ChunkedUploadResponse updateChunkedUploadPart(?string $chunked_upload_id, ?string $chunked_upload_part_seq, Models\ChunkedUploadRequest $chunked_upload_request = null) Add a chunk + * @method Models\CustomFields updateCustomFields(?string $envelope_id, Models\CustomFields $custom_fields = null) Updates envelope custom fields in an envelope + * @method Models\EnvelopeDocument updateDocument(?string $document_id, ?string $envelope_id) Adds a document to an existing draft envelope + * @method Models\DocumentFieldsInformation updateDocumentFields(?string $document_id, ?string $envelope_id, Models\DocumentFieldsInformation $document_fields_information = null) Updates existing custom document fields in an existing envelope document + * @method Models\Tabs updateDocumentTabs(?string $document_id, ?string $envelope_id, Models\Tabs $tabs = null) Updates the tabs for an envelope document + * @method Models\EnvelopeDocumentsResult updateDocuments(?string $envelope_id, Models\EnvelopeDefinition $envelope_definition = null) Adds one or more documents to an existing envelope document + * @method Models\EmailSettings updateEmailSettings(?string $envelope_id, Models\EmailSettings $email_settings = null) Updates the email setting overrides for an envelope + * @method Models\EnvelopeTransferRule updateEnvelopeTransferRule(?string $envelope_transfer_rule_id, Models\EnvelopeTransferRule $envelope_transfer_rule = null) Update an envelope transfer rule for an account * @method Models\EnvelopeTransferRuleInformation updateEnvelopeTransferRules(Models\EnvelopeTransferRuleInformation $envelope_transfer_rule_information = null) Update envelope transfer rules for an account - * @method Models\Workflow updateEnvelopeWorkflowDefinition(string $envelope_id, Models\Workflow $workflow = null) Updates the envelope workflow definition for an envelope - * @method Models\LockInformation updateLock(string $envelope_id, Models\LockRequest $lock_request = null) Updates an envelope lock - * @method Models\Notification updateNotificationSettings(string $envelope_id, Models\EnvelopeNotificationRequest $envelope_notification_request = null) Sets envelope notification (Reminders - * @method Models\DocumentVisibilityList updateRecipientDocumentVisibility(string $envelope_id, string $recipient_id, Models\DocumentVisibilityList $document_visibility_list = null) Updates document visibility for the recipients - * @method void updateRecipientInitialsImage(string $envelope_id, string $recipient_id) Sets the initials image for an accountless signer - * @method void updateRecipientSignatureImage(string $envelope_id, string $recipient_id) Sets the signature image for an accountless signer + * @method Models\Workflow updateEnvelopeWorkflowDefinition(?string $envelope_id, Models\Workflow $workflow = null) Updates the envelope workflow definition for an envelope + * @method Models\LockInformation updateLock(?string $envelope_id, Models\LockRequest $lock_request = null) Updates an envelope lock + * @method Models\Notification updateNotificationSettings(?string $envelope_id, Models\EnvelopeNotificationRequest $envelope_notification_request = null) Sets envelope notification (Reminders + * @method Models\DocumentVisibilityList updateRecipientDocumentVisibility(?string $envelope_id, ?string $recipient_id, Models\DocumentVisibilityList $document_visibility_list = null) Updates document visibility for the recipients + * @method mixed updateRecipientInitialsImage(?string $envelope_id, ?string $recipient_id) Sets the initials image for an accountless signer + * @method mixed updateRecipientSignatureImage(?string $envelope_id, ?string $recipient_id) Sets the signature image for an accountless signer * @method Api\EnvelopesApi\UpdateRecipientsOptions updateRecipientsOptions(array $options = ['set_combine_same_order_recipients' => null, 'set_offline_signing' => null, 'set_resend_envelope' => null]) - * @method Models\RecipientsUpdateSummary updateRecipients(string $envelope_id, Models\Recipients $recipients = null, Api\EnvelopesApi\UpdateRecipientsOptions $options = null) Updates recipients in a draft envelope or corrects recipient information for an in process envelope - * @method Models\DocumentVisibilityList updateRecipientsDocumentVisibility(string $envelope_id, Models\DocumentVisibilityList $document_visibility_list = null) Updates document visibility for the recipients - * @method Models\Tabs updateTabs(string $envelope_id, string $recipient_id, Models\Tabs $tabs = null) Updates the tabs for a recipient - * @method void updateTabsBlob(string $envelope_id) Update encrypted tabs for envelope - * @method Models\TemplateDocumentVisibilityList updateTemplateRecipientDocumentVisibility(string $recipient_id, string $template_id, Models\TemplateDocumentVisibilityList $template_document_visibility_list = null) Updates document visibility for the recipients - * @method Models\TemplateDocumentVisibilityList updateTemplateRecipientsDocumentVisibility(string $template_id, Models\TemplateDocumentVisibilityList $template_document_visibility_list = null) Updates document visibility for the recipients - * @method Models\Workflow updateTemplateWorkflowDefinition(string $template_id, Models\Workflow $workflow = null) Updates the workflow definition for a template + * @method Models\RecipientsUpdateSummary updateRecipients(?string $envelope_id, Models\Recipients $recipients = null, Api\EnvelopesApi\UpdateRecipientsOptions $options = null) Updates recipients in a draft envelope or corrects recipient information for an in process envelope + * @method Models\DocumentVisibilityList updateRecipientsDocumentVisibility(?string $envelope_id, Models\DocumentVisibilityList $document_visibility_list = null) Updates document visibility for the recipients + * @method Models\Tabs updateTabs(?string $envelope_id, ?string $recipient_id, Models\Tabs $tabs = null) Updates the tabs for a recipient + * @method mixed updateTabsBlob(?string $envelope_id) Update encrypted tabs for envelope + * @method Models\TemplateDocumentVisibilityList updateTemplateRecipientDocumentVisibility(?string $recipient_id, ?string $template_id, Models\TemplateDocumentVisibilityList $template_document_visibility_list = null) Updates document visibility for the recipients + * @method Models\TemplateDocumentVisibilityList updateTemplateRecipientsDocumentVisibility(?string $template_id, Models\TemplateDocumentVisibilityList $template_document_visibility_list = null) Updates document visibility for the recipients + * @method Models\Workflow updateTemplateWorkflowDefinition(?string $template_id, Models\Workflow $workflow = null) Updates the workflow definition for a template */ class Envelopes extends BaseApi { @@ -181,6 +187,8 @@ class Envelopes extends BaseApi 'createLockWithHttpInfo', 'createRecipient', 'createRecipientWithHttpInfo', + 'createRecipientManualReviewView', + 'createRecipientManualReviewViewWithHttpInfo', 'createRecipientProofFileLink', 'createRecipientProofFileLinkWithHttpInfo', 'createRecipientProofFileResourceToken', @@ -243,6 +251,8 @@ class Envelopes extends BaseApi 'getDocumentWithHttpInfo', 'getDocumentPageImage', 'getDocumentPageImageWithHttpInfo', + 'getDocumentResponsiveHtml', + 'getDocumentResponsiveHtmlWithHttpInfo', 'getDocumentTabs', 'getDocumentTabsWithHttpInfo', 'getEmailSettings', @@ -275,6 +285,8 @@ class Envelopes extends BaseApi 'getRecipientSignatureWithHttpInfo', 'getRecipientSignatureImage', 'getRecipientSignatureImageWithHttpInfo', + 'getResponsiveHtml', + 'getResponsiveHtmlWithHttpInfo', 'getTabsBlob', 'getTabsBlobWithHttpInfo', 'getTemplateRecipientDocumentVisibility', diff --git a/src/Api/Folders.php b/src/Api/Folders.php index 7aa3106..473f802 100644 --- a/src/Api/Folders.php +++ b/src/Api/Folders.php @@ -8,14 +8,15 @@ /** * Class Folders * @method Api\FoldersApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\FoldersApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\FoldersResponse callList(Api\FoldersApi\ListOptions $options = null) Gets a list of the folders for the account * @method Api\FoldersApi\ListItemsOptions listItemsOptions(array $options = ['set_from_date' => null, 'set_include_items' => null, 'set_owner_email' => null, 'set_owner_name' => null, 'set_search_text' => null, 'set_start_position' => null, 'set_status' => null, 'set_to_date' => null]) - * @method Models\FolderItemsResponse listItems(string $folder_id, Api\FoldersApi\ListItemsOptions $options = null) Gets a list of the envelopes in the specified folder - * @method Models\FoldersResponse moveEnvelopes(string $folder_id, Models\FoldersRequest $folders_request = null) Moves an envelope from its current folder to the specified folder + * @method Models\FolderItemsResponse listItems(?string $folder_id, Api\FoldersApi\ListItemsOptions $options = null) Gets a list of the envelopes in the specified folder + * @method Models\FoldersResponse moveEnvelopes(?string $folder_id, Models\FoldersRequest $folders_request = null) Moves an envelope from its current folder to the specified folder * @method Api\FoldersApi\SearchOptions searchOptions(array $options = ['set_all' => null, 'set_count' => null, 'set_from_date' => null, 'set_include_recipients' => null, 'set_order' => null, 'set_order_by' => null, 'set_start_position' => null, 'set_to_date' => null]) - * @method Models\FolderItemResponse search(string $search_folder_id, Api\FoldersApi\SearchOptions $options = null) Gets a list of envelopes in folders matching the specified criteria + * @method Models\FolderItemResponse search(?string $search_folder_id, Api\FoldersApi\SearchOptions $options = null) Gets a list of envelopes in folders matching the specified criteria */ class Folders extends BaseApi { diff --git a/src/Api/Groups.php b/src/Api/Groups.php index 28b9625..f5c9ebe 100644 --- a/src/Api/Groups.php +++ b/src/Api/Groups.php @@ -8,19 +8,20 @@ /** * Class Groups * @method Api\GroupsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\GroupsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\GroupInformation createGroups(Models\GroupInformation $group_information = null) Creates one or more groups for the account - * @method Models\BrandsResponse deleteBrands(string $group_id, Models\BrandsRequest $brands_request = null) Deletes brand information from the requested group - * @method Models\UsersResponse deleteGroupUsers(string $group_id, Models\UserInfoList $user_info_list = null) Deletes one or more users from a gro + * @method Models\GroupBrands deleteBrands(?string $group_id, Models\BrandsRequest $brands_request = null) Deletes brand information from the requested group + * @method Models\UsersResponse deleteGroupUsers(?string $group_id, Models\UserInfoList $user_info_list = null) Deletes one or more users from a gro * @method Models\GroupInformation deleteGroups(Models\GroupInformation $group_information = null) Deletes an existing user group - * @method Models\BrandsResponse getBrands(string $group_id) Gets group brand ID Information + * @method Models\GroupBrands getBrands(?string $group_id) Gets group brand ID Information * @method Api\GroupsApi\ListGroupUsersOptions listGroupUsersOptions(array $options = ['set_count' => null, 'set_start_position' => null]) - * @method Models\UsersResponse listGroupUsers(string $group_id, Api\GroupsApi\ListGroupUsersOptions $options = null) Gets a list of users in a group + * @method Models\UsersResponse listGroupUsers(?string $group_id, Api\GroupsApi\ListGroupUsersOptions $options = null) Gets a list of users in a group * @method Api\GroupsApi\ListGroupsOptions listGroupsOptions(array $options = ['set_count' => null, 'set_group_type' => null, 'set_include_usercount' => null, 'set_search_text' => null, 'set_start_position' => null]) * @method Models\GroupInformation listGroups(Api\GroupsApi\ListGroupsOptions $options = null) Gets information about groups associated with the account - * @method Models\BrandsResponse updateBrands(string $group_id, Models\BrandsRequest $brands_request = null) Adds group brand ID information to a group - * @method Models\UsersResponse updateGroupUsers(string $group_id, Models\UserInfoList $user_info_list = null) Adds one or more users to an existing group + * @method Models\GroupBrands updateBrands(?string $group_id, Models\BrandsRequest $brands_request = null) Adds group brand ID information to a group + * @method Models\UsersResponse updateGroupUsers(?string $group_id, Models\UserInfoList $user_info_list = null) Adds one or more users to an existing group * @method Models\GroupInformation updateGroups(Models\GroupInformation $group_information = null) Updates the group information for a group */ class Groups extends BaseApi diff --git a/src/Api/Notary.php b/src/Api/Notary.php index 2ebd547..64deb68 100644 --- a/src/Api/Notary.php +++ b/src/Api/Notary.php @@ -8,20 +8,21 @@ /** * Class Notary * @method Api\NotaryApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\NotaryApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\Notary createNotary(Models\Notary $notary = null) Add a notary to the system * @method Models\NotaryJurisdiction createNotaryJurisdictions(Models\NotaryJurisdiction $notary_jurisdiction = null) Add a notary jurisdiction to the system - * @method void deleteNotaryJurisdiction(string $jurisdiction_id) Delete a notary jurisdiction a specified user + * @method mixed deleteNotaryJurisdiction(?string $jurisdiction_id) Delete a notary jurisdiction a specified user * @method Api\NotaryApi\GetNotaryOptions getNotaryOptions(array $options = ['set_include_jurisdictions' => null]) * @method Models\NotaryResult getNotary(Api\NotaryApi\GetNotaryOptions $options = null) Get notary settings for a user - * @method Models\NotaryJurisdiction getNotaryJurisdiction(string $jurisdiction_id) Get notary a jurisdiction for a user - * @method void getNotaryJurisdictionSeal(string $jurisdiction_id) Get notary seal for a jurisdiction + * @method Models\NotaryJurisdiction getNotaryJurisdiction(?string $jurisdiction_id) Get notary a jurisdiction for a user + * @method mixed getNotaryJurisdictionSeal(?string $jurisdiction_id) Get notary seal for a jurisdiction * @method Models\NotaryJurisdictionList getNotaryJurisdictions() Get notary jurisdictions for a user * @method Api\NotaryApi\ListNotaryJournalsOptions listNotaryJournalsOptions(array $options = ['set_count' => null, 'set_search_text' => null, 'set_start_position' => null]) * @method Models\NotaryJournalList listNotaryJournals(Api\NotaryApi\ListNotaryJournalsOptions $options = null) Get notary jurisdictions for a user * @method Models\Notary updateNotary(Models\Notary $notary = null) Update a notary - * @method Models\NotaryJurisdiction updateNotaryJurisdiction(string $jurisdiction_id, Models\NotaryJurisdiction $notary_jurisdiction = null) Update a notary jurisdiction + * @method Models\NotaryJurisdiction updateNotaryJurisdiction(?string $jurisdiction_id, Models\NotaryJurisdiction $notary_jurisdiction = null) Update a notary jurisdiction */ class Notary extends BaseApi { diff --git a/src/Api/Organizations.php b/src/Api/Organizations.php index 60b0181..c38b894 100644 --- a/src/Api/Organizations.php +++ b/src/Api/Organizations.php @@ -8,10 +8,11 @@ /** * Class Organizations * @method Api\OrganizationsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\OrganizationsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client - * @method void deleteReport(string $organization_id, string $report_correlation_id) Retrieves org level report by correlation id and site - * @method void getReport(string $organization_id, string $report_correlation_id) Retrieves org level report by correlation id and site + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update + * @method mixed deleteReport(?string $organization_id, ?string $report_correlation_id) Retrieves org level report by correlation id and site + * @method mixed getReport(?string $organization_id, ?string $report_correlation_id) Retrieves org level report by correlation id and site */ class Organizations extends BaseApi { diff --git a/src/Api/PowerForms.php b/src/Api/PowerForms.php index 8352fad..5881a28 100644 --- a/src/Api/PowerForms.php +++ b/src/Api/PowerForms.php @@ -8,19 +8,20 @@ /** * Class PowerForms * @method Api\PowerFormsApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\PowerFormsApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\PowerForm createPowerForm(Models\PowerForm $power_form = null) Creates a new PowerForm - * @method void deletePowerForm(string $power_form_id) Delete a PowerForm + * @method mixed deletePowerForm(?string $power_form_id) Delete a PowerForm * @method Models\PowerFormsResponse deletePowerForms(Models\PowerFormsRequest $power_forms_request = null) Deletes one or more PowerForms - * @method Models\PowerForm getPowerForm(string $power_form_id) Returns a single PowerForm + * @method Models\PowerForm getPowerForm(?string $power_form_id) Returns a single PowerForm * @method Api\PowerFormsApi\GetPowerFormDataOptions getPowerFormDataOptions(array $options = ['set_data_layout' => null, 'set_from_date' => null, 'set_to_date' => null]) - * @method Models\PowerFormsFormDataResponse getPowerFormData(string $power_form_id, Api\PowerFormsApi\GetPowerFormDataOptions $options = null) Returns the form data associated with the usage of a PowerForm + * @method Models\PowerFormsFormDataResponse getPowerFormData(?string $power_form_id, Api\PowerFormsApi\GetPowerFormDataOptions $options = null) Returns the form data associated with the usage of a PowerForm * @method Api\PowerFormsApi\ListPowerFormSendersOptions listPowerFormSendersOptions(array $options = ['set_start_position' => null]) * @method Models\PowerFormSendersResponse listPowerFormSenders(Api\PowerFormsApi\ListPowerFormSendersOptions $options = null) Returns the list of PowerForms available to the user * @method Api\PowerFormsApi\ListPowerFormsOptions listPowerFormsOptions(array $options = ['set_from_date' => null, 'set_order' => null, 'set_order_by' => null, 'set_to_date' => null]) * @method Models\PowerFormsResponse listPowerForms(Api\PowerFormsApi\ListPowerFormsOptions $options = null) Returns the list of PowerForms available to the user - * @method Models\PowerForm updatePowerForm(string $power_form_id, Models\PowerForm $power_form = null) Creates a new PowerForm + * @method Models\PowerForm updatePowerForm(?string $power_form_id, Models\PowerForm $power_form = null) Creates a new PowerForm */ class PowerForms extends BaseApi { diff --git a/src/Api/Signature.php b/src/Api/Signature.php new file mode 100644 index 0000000..b3588b8 --- /dev/null +++ b/src/Api/Signature.php @@ -0,0 +1,23 @@ + null]) - * @method Models\Recipients createRecipients(string $template_id, Models\TemplateRecipients $template_recipients = null, Api\TemplatesApi\CreateRecipientsOptions $options = null) Adds tabs for a recipient - * @method Models\Tabs createTabs(string $recipient_id, string $template_id, Models\TemplateTabs $template_tabs = null) Adds tabs for a recipient + * @method Models\Recipients createRecipients(?string $template_id, Models\TemplateRecipients $template_recipients = null, Api\TemplatesApi\CreateRecipientsOptions $options = null) Adds tabs for a recipient + * @method Models\Tabs createTabs(?string $recipient_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Adds tabs for a recipient * @method Models\TemplateSummary createTemplate(Models\EnvelopeTemplate $envelope_template = null) Creates an envelope from a template - * @method Models\DocumentHtmlDefinitions createTemplateDocumentResponsiveHtmlPreview(string $document_id, string $template_id, Models\DocumentHtmlDefinition $document_html_definition = null) Post Responsive HTML Preview for a document in a template - * @method Models\Tabs createTemplateDocumentTabs(string $document_id, string $template_id, Models\TemplateTabs $template_tabs = null) Adds the tabs to a tempate - * @method Models\ViewUrl createTemplateRecipientPreview(string $template_id, Models\RecipientPreviewRequest $recipient_preview_request = null) Provides a URL to start a recipient view of the Envelope UI - * @method Models\DocumentHtmlDefinitions createTemplateResponsiveHtmlPreview(string $template_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for all documents in a template - * @method Models\BulkRecipientsUpdateResponse deleteBulkRecipients(string $recipient_id, string $template_id) Deletes the bulk recipient list on a template - * @method Models\CustomFields deleteCustomFields(string $template_id, Models\TemplateCustomFields $template_custom_fields = null) Deletes envelope custom fields in a template - * @method Models\DocumentFieldsInformation deleteDocumentFields(string $document_id, string $template_id, Models\DocumentFieldsInformation $document_fields_information = null) Deletes custom document fields from an existing template document - * @method void deleteDocumentPage(string $document_id, string $page_number, string $template_id, Models\PageRequest $page_request = null) Deletes a page from a document in an template - * @method Models\TemplateDocumentsResult deleteDocuments(string $template_id, Models\EnvelopeDefinition $envelope_definition = null) Deletes documents from a template - * @method Models\GroupInformation deleteGroupShare(string $template_id, string $template_part, Models\GroupInformation $group_information = null) Removes a member group - * @method Models\LockInformation deleteLock(string $template_id, Models\LockRequest $lock_request = null) Deletes a template lock - * @method Models\Recipients deleteRecipient(string $recipient_id, string $template_id, Models\TemplateRecipients $template_recipients = null) Deletes the specified recipient file from a template - * @method Models\Recipients deleteRecipients(string $template_id, Models\TemplateRecipients $template_recipients = null) Deletes recipients from a template - * @method Models\Tabs deleteTabs(string $recipient_id, string $template_id, Models\TemplateTabs $template_tabs = null) Deletes the tabs associated with a recipient in a template - * @method Models\Tabs deleteTemplateDocumentTabs(string $document_id, string $template_id, Models\TemplateTabs $template_tabs = null) Deletes tabs from an envelope document + * @method Models\DocumentHtmlDefinitions createTemplateDocumentResponsiveHtmlPreview(?string $document_id, ?string $template_id, Models\DocumentHtmlDefinition $document_html_definition = null) Post Responsive HTML Preview for a document in a template + * @method Models\Tabs createTemplateDocumentTabs(?string $document_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Adds the tabs to a tempate + * @method Models\ViewUrl createTemplateRecipientPreview(?string $template_id, Models\RecipientPreviewRequest $recipient_preview_request = null) Provides a URL to start a recipient view of the Envelope UI + * @method Models\DocumentHtmlDefinitions createTemplateResponsiveHtmlPreview(?string $template_id, Models\DocumentHtmlDefinition $document_html_definition = null) Get Responsive HTML Preview for all documents in a template + * @method Models\BulkRecipientsUpdateResponse deleteBulkRecipients(?string $recipient_id, ?string $template_id) Deletes the bulk recipient list on a template + * @method Models\CustomFields deleteCustomFields(?string $template_id, Models\TemplateCustomFields $template_custom_fields = null) Deletes envelope custom fields in a template + * @method Models\DocumentFieldsInformation deleteDocumentFields(?string $document_id, ?string $template_id, Models\DocumentFieldsInformation $document_fields_information = null) Deletes custom document fields from an existing template document + * @method mixed deleteDocumentPage(?string $document_id, ?string $page_number, ?string $template_id, Models\PageRequest $page_request = null) Deletes a page from a document in an template + * @method Models\TemplateDocumentsResult deleteDocuments(?string $template_id, Models\EnvelopeDefinition $envelope_definition = null) Deletes documents from a template + * @method Models\GroupInformation deleteGroupShare(?string $template_id, ?string $template_part, Models\GroupInformation $group_information = null) Removes a member group + * @method Models\LockInformation deleteLock(?string $template_id, Models\LockRequest $lock_request = null) Deletes a template lock + * @method Models\Recipients deleteRecipient(?string $recipient_id, ?string $template_id, Models\TemplateRecipients $template_recipients = null) Deletes the specified recipient file from a template + * @method Models\Recipients deleteRecipients(?string $template_id, Models\TemplateRecipients $template_recipients = null) Deletes recipients from a template + * @method Models\Tabs deleteTabs(?string $recipient_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Deletes the tabs associated with a recipient in a template + * @method Models\Tabs deleteTemplateDocumentTabs(?string $document_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Deletes tabs from an envelope document * @method Api\TemplatesApi\GetOptions getOptions(array $options = ['set_include' => null]) - * @method Models\EnvelopeTemplate get(string $template_id, Api\TemplatesApi\GetOptions $options = null) Gets a list of templates for a specified account + * @method Models\EnvelopeTemplate get(?string $template_id, Api\TemplatesApi\GetOptions $options = null) Gets a list of templates for a specified account * @method Api\TemplatesApi\GetDocumentOptions getDocumentOptions(array $options = ['set_encrypt' => null, 'set_show_changes' => null]) - * @method \SplFileObject getDocument(string $document_id, string $template_id, Api\TemplatesApi\GetDocumentOptions $options = null) Gets PDF documents from a template + * @method \SplFileObject getDocument(?string $document_id, ?string $template_id, Api\TemplatesApi\GetDocumentOptions $options = null) Gets PDF documents from a template * @method Api\TemplatesApi\GetDocumentPageImageOptions getDocumentPageImageOptions(array $options = ['set_dpi' => null, 'set_max_height' => null, 'set_max_width' => null, 'set_show_changes' => null]) - * @method \SplFileObject getDocumentPageImage(string $document_id, string $page_number, string $template_id, Api\TemplatesApi\GetDocumentPageImageOptions $options = null) Gets a page image from a template for display + * @method \SplFileObject getDocumentPageImage(?string $document_id, ?string $page_number, ?string $template_id, Api\TemplatesApi\GetDocumentPageImageOptions $options = null) Gets a page image from a template for display * @method Api\TemplatesApi\GetDocumentTabsOptions getDocumentTabsOptions(array $options = ['set_page_numbers' => null]) - * @method Models\Tabs getDocumentTabs(string $document_id, string $template_id, Api\TemplatesApi\GetDocumentTabsOptions $options = null) Returns tabs on the document - * @method Models\LockInformation getLock(string $template_id) Gets template lock information - * @method Models\Notification getNotificationSettings(string $template_id) Gets template notification information - * @method Models\Tabs getPageTabs(string $document_id, string $page_number, string $template_id) Returns tabs on the specified page + * @method Models\Tabs getDocumentTabs(?string $document_id, ?string $template_id, Api\TemplatesApi\GetDocumentTabsOptions $options = null) Returns tabs on the document + * @method Models\LockInformation getLock(?string $template_id) Gets template lock information + * @method Models\Notification getNotificationSettings(?string $template_id) Gets template notification information + * @method Models\Tabs getPageTabs(?string $document_id, ?string $page_number, ?string $template_id) Returns tabs on the specified page * @method Api\TemplatesApi\GetPagesOptions getPagesOptions(array $options = ['set_count' => null, 'set_dpi' => null, 'set_max_height' => null, 'set_max_width' => null, 'set_nocache' => null, 'set_show_changes' => null, 'set_start_position' => null]) - * @method Models\PageImages getPages(string $document_id, string $template_id, Api\TemplatesApi\GetPagesOptions $options = null) Returns document page image(s) based on input - * @method Models\DocumentHtmlDefinitionOriginals getTemplateDocumentHtmlDefinitions(string $document_id, string $template_id) Get the Original HTML Definition used to generate the Responsive HTML for a given document in a template - * @method Models\DocumentHtmlDefinitionOriginals getTemplateHtmlDefinitions(string $template_id) Get the Original HTML Definition used to generate the Responsive HTML for the template + * @method Models\PageImages getPages(?string $document_id, ?string $template_id, Api\TemplatesApi\GetPagesOptions $options = null) Returns document page image(s) based on input + * @method Models\DocumentHtmlDefinitionOriginals getTemplateDocumentHtmlDefinitions(?string $document_id, ?string $template_id) Get the Original HTML Definition used to generate the Responsive HTML for a given document in a template + * @method Models\DocumentHtmlDefinitionOriginals getTemplateHtmlDefinitions(?string $template_id) Get the Original HTML Definition used to generate the Responsive HTML for the template * @method Api\TemplatesApi\ListBulkRecipientsOptions listBulkRecipientsOptions(array $options = ['set_include_tabs' => null, 'set_start_position' => null]) - * @method Models\BulkRecipientsResponse listBulkRecipients(string $recipient_id, string $template_id, Api\TemplatesApi\ListBulkRecipientsOptions $options = null) Gets the bulk recipient file from a template - * @method Models\CustomFields listCustomFields(string $template_id) Gets the custom document fields from a template - * @method Models\DocumentFieldsInformation listDocumentFields(string $document_id, string $template_id) Gets the custom document fields for a an existing template document + * @method Models\BulkRecipientsResponse listBulkRecipients(?string $recipient_id, ?string $template_id, Api\TemplatesApi\ListBulkRecipientsOptions $options = null) Gets the bulk recipient file from a template + * @method Models\CustomFields listCustomFields(?string $template_id) Gets the custom document fields from a template + * @method Models\DocumentFieldsInformation listDocumentFields(?string $document_id, ?string $template_id) Gets the custom document fields for a an existing template document * @method Api\TemplatesApi\ListDocumentsOptions listDocumentsOptions(array $options = ['set_include_tabs' => null]) - * @method Models\TemplateDocumentsResult listDocuments(string $template_id, Api\TemplatesApi\ListDocumentsOptions $options = null) Gets a list of documents associated with a template + * @method Models\TemplateDocumentsResult listDocuments(?string $template_id, Api\TemplatesApi\ListDocumentsOptions $options = null) Gets a list of documents associated with a template * @method Api\TemplatesApi\ListRecipientsOptions listRecipientsOptions(array $options = ['set_include_anchor_tab_locations' => null, 'set_include_extended' => null, 'set_include_tabs' => null]) - * @method Models\Recipients listRecipients(string $template_id, Api\TemplatesApi\ListRecipientsOptions $options = null) Gets recipient information from a template + * @method Models\Recipients listRecipients(?string $template_id, Api\TemplatesApi\ListRecipientsOptions $options = null) Gets recipient information from a template * @method Api\TemplatesApi\ListTabsOptions listTabsOptions(array $options = ['set_include_anchor_tab_locations' => null, 'set_include_metadata' => null]) - * @method Models\Tabs listTabs(string $recipient_id, string $template_id, Api\TemplatesApi\ListTabsOptions $options = null) Gets the tabs information for a signer or sign - * @method Api\TemplatesApi\ListTemplatesOptions listTemplatesOptions(array $options = ['set_count' => null, 'set_created_from_date' => null, 'set_created_to_date' => null, 'set_folder_ids' => null, 'set_folder_types' => null, 'set_from_date' => null, 'set_include' => null, 'set_is_download' => null, 'set_modified_from_date' => null, 'set_modified_to_date' => null, 'set_order' => null, 'set_order_by' => null, 'set_search_fields' => null, 'set_search_text' => null, 'set_shared_by_me' => null, 'set_start_position' => null, 'set_template_ids' => null, 'set_to_date' => null, 'set_used_from_date' => null, 'set_used_to_date' => null, 'set_user_filter' => null, 'set_user_id' => null]) + * @method Models\Tabs listTabs(?string $recipient_id, ?string $template_id, Api\TemplatesApi\ListTabsOptions $options = null) Gets the tabs information for a signer or sign + * @method Api\TemplatesApi\ListTemplatesOptions listTemplatesOptions(array $options = ['set_count' => null, 'set_created_from_date' => null, 'set_created_to_date' => null, 'set_folder_ids' => null, 'set_folder_types' => null, 'set_from_date' => null, 'set_include' => null, 'set_is_deleted_template_only' => null, 'set_is_download' => null, 'set_modified_from_date' => null, 'set_modified_to_date' => null, 'set_order' => null, 'set_order_by' => null, 'set_search_fields' => null, 'set_search_text' => null, 'set_shared_by_me' => null, 'set_start_position' => null, 'set_template_ids' => null, 'set_to_date' => null, 'set_used_from_date' => null, 'set_used_to_date' => null, 'set_user_filter' => null, 'set_user_id' => null]) * @method Models\EnvelopeTemplateResults listTemplates(Api\TemplatesApi\ListTemplatesOptions $options = null) Gets the definition of a template - * @method void rotateDocumentPage(string $document_id, string $page_number, string $template_id, Models\PageRequest $page_request = null) Rotates page image from a template for display - * @method Models\TemplateUpdateSummary update(string $template_id, Models\EnvelopeTemplate $envelope_template = null) Updates an existing template - * @method Models\BulkRecipientsSummaryResponse updateBulkRecipients(string $recipient_id, string $template_id, Models\BulkRecipientsRequest $bulk_recipients_request = null) Adds or replaces the bulk recipients list in a template - * @method Models\CustomFields updateCustomFields(string $template_id, Models\TemplateCustomFields $template_custom_fields = null) Updates envelope custom fields in a template + * @method mixed rotateDocumentPage(?string $document_id, ?string $page_number, ?string $template_id, Models\PageRequest $page_request = null) Rotates page image from a template for display + * @method Models\TemplateUpdateSummary update(?string $template_id, Models\EnvelopeTemplate $envelope_template = null) Updates an existing template + * @method Models\BulkRecipientsSummaryResponse updateBulkRecipients(?string $recipient_id, ?string $template_id, Models\BulkRecipientsRequest $bulk_recipients_request = null) Adds or replaces the bulk recipients list in a template + * @method Models\CustomFields updateCustomFields(?string $template_id, Models\TemplateCustomFields $template_custom_fields = null) Updates envelope custom fields in a template * @method Api\TemplatesApi\UpdateDocumentOptions updateDocumentOptions(array $options = ['set_is_envelope_definition' => null]) - * @method Models\EnvelopeDocument updateDocument(string $document_id, string $template_id, Models\EnvelopeDefinition $envelope_definition = null, Api\TemplatesApi\UpdateDocumentOptions $options = null) Adds a document to a template document - * @method Models\DocumentFieldsInformation updateDocumentFields(string $document_id, string $template_id, Models\DocumentFieldsInformation $document_fields_information = null) Updates existing custom document fields in an existing template document - * @method Models\TemplateDocumentsResult updateDocuments(string $template_id, Models\EnvelopeDefinition $envelope_definition = null) Adds documents to a template document - * @method Models\GroupInformation updateGroupShare(string $template_id, string $template_part, Models\GroupInformation $group_information = null) Shares a template with a group - * @method Models\LockInformation updateLock(string $template_id, Models\LockRequest $lock_request = null) Updates a template lock - * @method Models\Notification updateNotificationSettings(string $template_id, Models\TemplateNotificationRequest $template_notification_request = null) Updates the notification structure for an existing template + * @method Models\EnvelopeDocument updateDocument(?string $document_id, ?string $template_id, Models\EnvelopeDefinition $envelope_definition = null, Api\TemplatesApi\UpdateDocumentOptions $options = null) Adds a document to a template document + * @method Models\DocumentFieldsInformation updateDocumentFields(?string $document_id, ?string $template_id, Models\DocumentFieldsInformation $document_fields_information = null) Updates existing custom document fields in an existing template document + * @method Models\TemplateDocumentsResult updateDocuments(?string $template_id, Models\EnvelopeDefinition $envelope_definition = null) Adds documents to a template document + * @method Models\GroupInformation updateGroupShare(?string $template_id, ?string $template_part, Models\GroupInformation $group_information = null) Shares a template with a group + * @method Models\LockInformation updateLock(?string $template_id, Models\LockRequest $lock_request = null) Updates a template lock + * @method Models\Notification updateNotificationSettings(?string $template_id, Models\TemplateNotificationRequest $template_notification_request = null) Updates the notification structure for an existing template * @method Api\TemplatesApi\UpdateRecipientsOptions updateRecipientsOptions(array $options = ['set_resend_envelope' => null]) - * @method Models\RecipientsUpdateSummary updateRecipients(string $template_id, Models\TemplateRecipients $template_recipients = null, Api\TemplatesApi\UpdateRecipientsOptions $options = null) Updates recipients in a template - * @method Models\Tabs updateTabs(string $recipient_id, string $template_id, Models\TemplateTabs $template_tabs = null) Updates the tabs for a recipient - * @method Models\Tabs updateTemplateDocumentTabs(string $document_id, string $template_id, Models\TemplateTabs $template_tabs = null) Updates the tabs for a template + * @method Models\RecipientsUpdateSummary updateRecipients(?string $template_id, Models\TemplateRecipients $template_recipients = null, Api\TemplatesApi\UpdateRecipientsOptions $options = null) Updates recipients in a template + * @method Models\Tabs updateTabs(?string $recipient_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Updates the tabs for a recipient + * @method Models\Tabs updateTemplateDocumentTabs(?string $document_id, ?string $template_id, Models\TemplateTabs $template_tabs = null) Updates the tabs for a template */ class Templates extends BaseApi { diff --git a/src/Api/TrustServiceProviders.php b/src/Api/TrustServiceProviders.php index 45ec470..4ad3c23 100644 --- a/src/Api/TrustServiceProviders.php +++ b/src/Api/TrustServiceProviders.php @@ -8,8 +8,9 @@ /** * Class TrustServiceProviders * @method Api\TrustServiceProvidersApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\TrustServiceProvidersApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\AccountSeals getSealProviders() Returns Account available seals for specified account */ class TrustServiceProviders extends BaseApi diff --git a/src/Api/Users.php b/src/Api/Users.php index e3d0882..c60f5b9 100644 --- a/src/Api/Users.php +++ b/src/Api/Users.php @@ -8,46 +8,50 @@ /** * Class Users * @method Api\UsersApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\UsersApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\UserInformationList callList(Api\UsersApi\ListOptions $options = null) Retrieves the list of users for the specified account * @method Models\NewUsersSummary create(Models\NewUsersDefinition $new_users_definition = null) Adds news user to the specified account - * @method Models\UserSignaturesInformation createSignatures(string $user_id, Models\UserSignaturesInformation $user_signatures_information = null) Adds user Signature and initials images to a Signature + * @method Models\UserSignaturesInformation createSignatures(?string $user_id, Models\UserSignaturesInformation $user_signatures_information = null) Adds user Signature and initials images to a Signature * @method Api\UsersApi\DeleteOptions deleteOptions(array $options = ['set_delete' => null]) * @method Models\UsersResponse delete(Models\UserInfoList $user_info_list = null, Api\UsersApi\DeleteOptions $options = null) Removes users account privileges - * @method Models\ContactUpdateResponse deleteContactWithId(string $contact_id) Replaces a particular contact associated with an account for the DocuSign service + * @method Models\ContactUpdateResponse deleteContactWithId(?string $contact_id) Replaces a particular contact associated with an account for the DocuSign service * @method Models\ContactUpdateResponse deleteContacts(Models\ContactModRequest $contact_mod_request = null) Delete contacts associated with an account for the DocuSign service - * @method Models\CustomSettingsInformation deleteCustomSettings(string $user_id, Models\CustomSettingsInformation $custom_settings_information = null) Deletes custom user settings for a specified user - * @method void deleteProfileImage(string $user_id) Deletes the user profile image for the specified user - * @method void deleteSignature(string $signature_id, string $user_id) Removes removes signature information for the specified user - * @method Models\UserSignature deleteSignatureImage(string $image_type, string $signature_id, string $user_id) Deletes the user initials image or the user signature image for the specified user or + * @method Models\CustomSettingsInformation deleteCustomSettings(?string $user_id, Models\CustomSettingsInformation $custom_settings_information = null) Deletes custom user settings for a specified user + * @method mixed deleteProfileImage(?string $user_id) Deletes the user profile image for the specified user + * @method mixed deleteSignature(?string $signature_id, ?string $user_id) Removes removes signature information for the specified user + * @method Models\UserSignature deleteSignatureImage(?string $image_type, ?string $signature_id, ?string $user_id) Deletes the user initials image or the user signature image for the specified user or * @method Api\UsersApi\GetContactByIdOptions getContactByIdOptions(array $options = ['set_cloud_provider' => null]) - * @method Models\ContactGetResponse getContactById(string $contact_id, Api\UsersApi\GetContactByIdOptions $options = null) Gets a particular contact associated with the user + * @method Models\ContactGetResponse getContactById(?string $contact_id, Api\UsersApi\GetContactByIdOptions $options = null) Gets a particular contact associated with the user * @method Api\UsersApi\GetInformationOptions getInformationOptions(array $options = ['set_additional_info' => null, 'set_email' => null]) - * @method Models\UserInformation getInformation(string $user_id, Api\UsersApi\GetInformationOptions $options = null) Gets the user information for a specified user - * @method Models\UserProfile getProfile(string $user_id) Retrieves the user profile for a specified user + * @method Models\UserInformation getInformation(?string $user_id, Api\UsersApi\GetInformationOptions $options = null) Gets the user information for a specified user + * @method Models\UserProfile getProfile(?string $user_id) Retrieves the user profile for a specified user * @method Api\UsersApi\GetProfileImageOptions getProfileImageOptions(array $options = ['set_encoding' => null]) - * @method \SplFileObject getProfileImage(string $user_id, Api\UsersApi\GetProfileImageOptions $options = null) Retrieves the user profile image for the specified user - * @method Models\UserSettingsInformation getSettings(string $user_id) Gets the user account settings for a specified user - * @method Models\UserSignature getSignature(string $signature_id, string $user_id) Gets the user signature information for the specified user + * @method \SplFileObject getProfileImage(?string $user_id, Api\UsersApi\GetProfileImageOptions $options = null) Retrieves the user profile image for the specified user + * @method Models\UserSettingsInformation getSettings(?string $user_id) Gets the user account settings for a specified user + * @method Models\UserSignature getSignature(?string $signature_id, ?string $user_id) Gets the user signature information for the specified user * @method Api\UsersApi\GetSignatureImageOptions getSignatureImageOptions(array $options = ['set_include_chrome' => null]) - * @method \SplFileObject getSignatureImage(string $image_type, string $signature_id, string $user_id, Api\UsersApi\GetSignatureImageOptions $options = null) Retrieves the user initials image or the user signature image for the specified user or - * @method Models\CustomSettingsInformation listCustomSettings(string $user_id) Retrieves the custom user settings for a specified user + * @method \SplFileObject getSignatureImage(?string $image_type, ?string $signature_id, ?string $user_id, Api\UsersApi\GetSignatureImageOptions $options = null) Retrieves the user initials image or the user signature image for the specified user or + * @method Models\CustomSettingsInformation listCustomSettings(?string $user_id) Retrieves the custom user settings for a specified user * @method Api\UsersApi\ListSignaturesOptions listSignaturesOptions(array $options = ['set_stamp_type' => null]) - * @method Models\UserSignaturesInformation listSignatures(string $user_id, Api\UsersApi\ListSignaturesOptions $options = null) Retrieves a list of user signature definitions for a specified user + * @method Models\UserSignaturesInformation listSignatures(?string $user_id, Api\UsersApi\ListSignaturesOptions $options = null) Retrieves a list of user signature definitions for a specified user * @method Models\ContactUpdateResponse postContacts(Models\ContactModRequest $contact_mod_request = null) Imports multiple new contacts into the contacts collection from CSV * @method Models\ContactUpdateResponse putContacts(Models\ContactModRequest $contact_mod_request = null) Replaces contacts associated with an account for the DocuSign service - * @method Models\CustomSettingsInformation updateCustomSettings(string $user_id, Models\CustomSettingsInformation $custom_settings_information = null) Adds or updates custom user settings for the specified user - * @method void updateProfile(string $user_id, Models\UserProfile $user_profile = null) Updates the user profile information for the specified user - * @method void updateProfileImage(string $user_id) Updates the user profile image for a specified user - * @method void updateSettings(string $user_id, Models\UserSettingsInformation $user_settings_information = null) Updates the user account settings for a specified user + * @method Models\CustomSettingsInformation updateCustomSettings(?string $user_id, Models\CustomSettingsInformation $custom_settings_information = null) Adds or updates custom user settings for the specified user + * @method mixed updateProfile(?string $user_id, Models\UserProfile $user_profile = null) Updates the user profile information for the specified user + * @method mixed updateProfileImage(?string $user_id) Updates the user profile image for a specified user + * @method Api\UsersApi\UpdateSettingsOptions updateSettingsOptions(array $options = ['set_allow_all_languages' => null]) + * @method mixed updateSettings(?string $user_id, Models\UserSettingsInformation $user_settings_information = null, Api\UsersApi\UpdateSettingsOptions $options = null) Updates the user account settings for a specified user * @method Api\UsersApi\UpdateSignatureOptions updateSignatureOptions(array $options = ['set_close_existing_signature' => null]) - * @method Models\UserSignature updateSignature(string $signature_id, string $user_id, Models\UserSignatureDefinition $user_signature_definition = null, Api\UsersApi\UpdateSignatureOptions $options = null) Updates the user signature for a specified user + * @method Models\UserSignature updateSignature(?string $signature_id, ?string $user_id, Models\UserSignatureDefinition $user_signature_definition = null, Api\UsersApi\UpdateSignatureOptions $options = null) Updates the user signature for a specified user * @method Api\UsersApi\UpdateSignatureImageOptions updateSignatureImageOptions(array $options = ['set_transparent_png' => null]) - * @method Models\UserSignature updateSignatureImage(string $image_type, string $signature_id, string $user_id, Api\UsersApi\UpdateSignatureImageOptions $options = null) Updates the user signature image or user initials image for the specified user or - * @method Models\UserSignaturesInformation updateSignatures(string $user_id, Models\UserSignaturesInformation $user_signatures_information = null) Adds - * @method Models\UserInformation updateUser(string $user_id, Models\UserInformation $user_information = null) Updates the specified user information - * @method Models\UserInformationList updateUsers(Models\UserInformationList $user_information_list = null) Change one or more user in the specified account + * @method Models\UserSignature updateSignatureImage(?string $image_type, ?string $signature_id, ?string $user_id, Api\UsersApi\UpdateSignatureImageOptions $options = null) Updates the user signature image or user initials image for the specified user or + * @method Models\UserSignaturesInformation updateSignatures(?string $user_id, Models\UserSignaturesInformation $user_signatures_information = null) Adds + * @method Api\UsersApi\UpdateUserOptions updateUserOptions(array $options = ['set_allow_all_languages' => null]) + * @method Models\UserInformation updateUser(?string $user_id, Models\UserInformation $user_information = null, Api\UsersApi\UpdateUserOptions $options = null) Updates the specified user information + * @method Api\UsersApi\UpdateUsersOptions updateUsersOptions(array $options = ['set_allow_all_languages' => null]) + * @method Models\UserInformationList updateUsers(Models\UserInformationList $user_information_list = null, Api\UsersApi\UpdateUsersOptions $options = null) Change one or more user in the specified account */ class Users extends BaseApi { diff --git a/src/Api/Workspaces.php b/src/Api/Workspaces.php index ee5c237..0905668 100644 --- a/src/Api/Workspaces.php +++ b/src/Api/Workspaces.php @@ -8,22 +8,23 @@ /** * Class Workspaces * @method Api\WorkspacesApi getClient() - * @method \DocuSign\eSign\Client\ApiClient getApiClient() Get API client - * @method Api\WorkspacesApi setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient) Set the API client + * @method DocuSign\eSign\Client\ApiClient getApiClient() Get API client + * @method self setApiClient(ApiClient $apiClient) Set the API client + * @method string updateResourcePath(string $resourcePath, string $baseName, string $paramName) Update * @method Models\Workspace createWorkspace(Models\Workspace $workspace = null) Create a Workspace - * @method Models\WorkspaceItem createWorkspaceFile(string $folder_id, string $workspace_id) Creates a workspace file - * @method Models\Workspace deleteWorkspace(string $workspace_id) Delete Workspace - * @method void deleteWorkspaceFolderItems(string $folder_id, string $workspace_id, Models\WorkspaceItemList $workspace_item_list = null) Deletes workspace one or more specific files - * @method Models\Workspace getWorkspace(string $workspace_id) Get Workspace + * @method Models\WorkspaceItem createWorkspaceFile(?string $folder_id, ?string $workspace_id) Creates a workspace file + * @method Models\Workspace deleteWorkspace(?string $workspace_id) Delete Workspace + * @method mixed deleteWorkspaceFolderItems(?string $folder_id, ?string $workspace_id, Models\WorkspaceItemList $workspace_item_list = null) Deletes workspace one or more specific files + * @method Models\Workspace getWorkspace(?string $workspace_id) Get Workspace * @method Api\WorkspacesApi\GetWorkspaceFileOptions getWorkspaceFileOptions(array $options = ['set_is_download' => null, 'set_pdf_version' => null]) - * @method void getWorkspaceFile(string $file_id, string $folder_id, string $workspace_id, Api\WorkspacesApi\GetWorkspaceFileOptions $options = null) Get Workspace File + * @method mixed getWorkspaceFile(?string $file_id, ?string $folder_id, ?string $workspace_id, Api\WorkspacesApi\GetWorkspaceFileOptions $options = null) Get Workspace File * @method Api\WorkspacesApi\ListWorkspaceFilePagesOptions listWorkspaceFilePagesOptions(array $options = ['set_count' => null, 'set_dpi' => null, 'set_max_height' => null, 'set_max_width' => null, 'set_start_position' => null]) - * @method Models\PageImages listWorkspaceFilePages(string $file_id, string $folder_id, string $workspace_id, Api\WorkspacesApi\ListWorkspaceFilePagesOptions $options = null) List File Pages + * @method Models\PageImages listWorkspaceFilePages(?string $file_id, ?string $folder_id, ?string $workspace_id, Api\WorkspacesApi\ListWorkspaceFilePagesOptions $options = null) List File Pages * @method Api\WorkspacesApi\ListWorkspaceFolderItemsOptions listWorkspaceFolderItemsOptions(array $options = ['set_count' => null, 'set_include_files' => null, 'set_include_sub_folders' => null, 'set_include_thumbnails' => null, 'set_include_user_detail' => null, 'set_start_position' => null, 'set_workspace_user_id' => null]) - * @method Models\WorkspaceFolderContents listWorkspaceFolderItems(string $folder_id, string $workspace_id, Api\WorkspacesApi\ListWorkspaceFolderItemsOptions $options = null) List Workspace Folder Contents + * @method Models\WorkspaceFolderContents listWorkspaceFolderItems(?string $folder_id, ?string $workspace_id, Api\WorkspacesApi\ListWorkspaceFolderItemsOptions $options = null) List Workspace Folder Contents * @method Models\WorkspaceList listWorkspaces() List Workspaces - * @method Models\Workspace updateWorkspace(string $workspace_id, Models\Workspace $workspace = null) Update Workspace - * @method Models\WorkspaceItem updateWorkspaceFile(string $file_id, string $folder_id, string $workspace_id) Update Workspace File Metadata + * @method Models\Workspace updateWorkspace(?string $workspace_id, Models\Workspace $workspace = null) Update Workspace + * @method Models\WorkspaceItem updateWorkspaceFile(?string $file_id, ?string $folder_id, ?string $workspace_id) Update Workspace File Metadata */ class Workspaces extends BaseApi { diff --git a/src/Client.php b/src/Client.php index f3d2d09..a5bcd49 100644 --- a/src/Client.php +++ b/src/Client.php @@ -26,6 +26,7 @@ * @property-read Api\Notary $notary * @property-read Api\Organizations $organizations * @property-read Api\PowerForms $powerForms + * @property-read Api\Signature $signature * @property-read Api\SigningGroups $signingGroups * @property-read Api\Templates $templates * @property-read Api\TrustServiceProviders $trustServiceProviders @@ -33,13 +34,13 @@ * @property-read Api\Workspaces $workspaces * @method Models\AccessCodeFormat accessCodeFormat(array $props = ['format_required' => null, 'format_required_metadata' => null, 'letter_required' => null, 'letter_required_metadata' => null, 'minimum_length' => null, 'minimum_length_metadata' => null, 'number_required' => null, 'number_required_metadata' => null, 'special_character_required' => null, 'special_character_required_metadata' => null]) * @method Models\AccountAddress accountAddress(array $props = ['address1' => null, 'address2' => null, 'city' => null, 'country' => null, 'email' => null, 'fax' => null, 'first_name' => null, 'last_name' => null, 'phone' => null, 'postal_code' => null, 'state' => null, 'supported_countries' => null]) - * @method Models\AccountBillingPlan accountBillingPlan(array $props = ['add_ons' => null, 'can_cancel_renewal' => null, 'can_upgrade' => null, 'currency_code' => null, 'downgrade_plan_information' => null, 'enable_support' => null, 'included_seats' => null, 'incremental_seats' => null, 'is_downgrade' => null, 'other_discount_percent' => null, 'payment_cycle' => null, 'payment_method' => null, 'per_seat_price' => null, 'plan_classification' => null, 'plan_feature_sets' => null, 'plan_id' => null, 'plan_name' => null, 'renewal_status' => null, 'seat_discounts' => null, 'support_incident_fee' => null, 'support_plan_fee' => null]) - * @method Models\AccountBillingPlanResponse accountBillingPlanResponse(array $props = ['billing_address' => null, 'billing_address_is_credit_card_address' => null, 'billing_plan' => null, 'credit_card_information' => null, 'direct_debit_processor_information' => null, 'downgrade_plan_information' => null, 'payment_method' => null, 'payment_processor_information' => null, 'referral_information' => null, 'successor_plans' => null]) + * @method Models\AccountBillingPlan accountBillingPlan(array $props = ['add_ons' => null, 'app_store_receipt_expiration_date' => null, 'app_store_receipt_purchase_date' => null, 'can_cancel_renewal' => null, 'can_upgrade' => null, 'currency_code' => null, 'downgrade_plan_information' => null, 'enable_support' => null, 'included_seats' => null, 'incremental_seats' => null, 'is_downgrade' => null, 'notification_type' => null, 'other_discount_percent' => null, 'payment_cycle' => null, 'payment_method' => null, 'per_seat_price' => null, 'plan_classification' => null, 'plan_feature_sets' => null, 'plan_id' => null, 'plan_name' => null, 'plan_start_date' => null, 'product_id' => null, 'renewal_date' => null, 'renewal_status' => null, 'seat_discounts' => null, 'subscription_start_date' => null, 'support_incident_fee' => null, 'support_plan_fee' => null]) + * @method Models\AccountBillingPlanResponse accountBillingPlanResponse(array $props = ['billing_address' => null, 'billing_address_is_credit_card_address' => null, 'billing_plan' => null, 'credit_card_information' => null, 'direct_debit_processor_information' => null, 'downgrade_plan_information' => null, 'downgrade_request_information' => null, 'entity_name' => null, 'payment_method' => null, 'payment_processor_information' => null, 'referral_information' => null, 'successor_plans' => null]) * @method Models\AccountIdentityInputOption accountIdentityInputOption(array $props = ['is_required' => null, 'option_name' => null, 'value_type' => null]) * @method Models\AccountIdentityVerificationResponse accountIdentityVerificationResponse(array $props = ['identity_verification' => null]) * @method Models\AccountIdentityVerificationStep accountIdentityVerificationStep(array $props = ['name' => null, 'type' => null]) * @method Models\AccountIdentityVerificationWorkflow accountIdentityVerificationWorkflow(array $props = ['default_description' => null, 'default_name' => null, 'input_options' => null, 'signature_provider' => null, 'steps' => null, 'workflow_id' => null, 'workflow_resource_key' => null]) - * @method Models\AccountInformation accountInformation(array $props = ['account_id_guid' => null, 'account_name' => null, 'account_settings' => null, 'allow_transaction_rooms' => null, 'billing_period_days_remaining' => null, 'billing_period_end_date' => null, 'billing_period_envelopes_allowed' => null, 'billing_period_envelopes_sent' => null, 'billing_period_start_date' => null, 'billing_profile' => null, 'can_upgrade' => null, 'connect_permission' => null, 'created_date' => null, 'currency_code' => null, 'current_plan_id' => null, 'distributor_code' => null, 'docu_sign_landing_url' => null, 'dss_values' => null, 'envelope_sending_blocked' => null, 'envelope_unit_price' => null, 'external_account_id' => null, 'forgotten_password_questions_count' => null, 'is_downgrade' => null, 'payment_method' => null, 'plan_classification' => null, 'plan_end_date' => null, 'plan_name' => null, 'plan_start_date' => null, 'recipient_domains' => null, 'seats_allowed' => null, 'seats_in_use' => null, 'status21_cfr_part11' => null, 'suspension_date' => null, 'suspension_status' => null]) + * @method Models\AccountInformation accountInformation(array $props = ['account_id_guid' => null, 'account_name' => null, 'account_settings' => null, 'allow_transaction_rooms' => null, 'billing_period_days_remaining' => null, 'billing_period_end_date' => null, 'billing_period_envelopes_allowed' => null, 'billing_period_envelopes_sent' => null, 'billing_period_start_date' => null, 'billing_profile' => null, 'can_upgrade' => null, 'connect_permission' => null, 'created_date' => null, 'currency_code' => null, 'current_plan_id' => null, 'display_appliance_start_url' => null, 'display_appliance_url' => null, 'distributor_code' => null, 'docu_sign_landing_url' => null, 'dss_values' => null, 'envelope_sending_blocked' => null, 'envelope_unit_price' => null, 'external_account_id' => null, 'forgotten_password_questions_count' => null, 'is_downgrade' => null, 'payment_method' => null, 'plan_classification' => null, 'plan_end_date' => null, 'plan_name' => null, 'plan_start_date' => null, 'recipient_domains' => null, 'seats_allowed' => null, 'seats_in_use' => null, 'status21_cfr_part11' => null, 'suspension_date' => null, 'suspension_status' => null, 'use_display_appliance' => null]) * @method Models\AccountMinimumPasswordLength accountMinimumPasswordLength(array $props = ['maximum_length' => null, 'minimum_length' => null]) * @method Models\AccountNotification accountNotification(array $props = ['expirations' => null, 'reminders' => null, 'user_override_enabled' => null]) * @method Models\AccountPasswordExpirePasswordDays accountPasswordExpirePasswordDays(array $props = ['maximum_days' => null, 'minimum_days' => null]) @@ -50,28 +51,28 @@ * @method Models\AccountPasswordRules accountPasswordRules(array $props = ['expire_password' => null, 'expire_password_days' => null, 'expire_password_days_metadata' => null, 'lockout_duration_minutes' => null, 'lockout_duration_minutes_metadata' => null, 'lockout_duration_type' => null, 'lockout_duration_type_metadata' => null, 'minimum_password_age_days' => null, 'minimum_password_age_days_metadata' => null, 'minimum_password_length' => null, 'minimum_password_length_metadata' => null, 'password_include_digit' => null, 'password_include_digit_or_special_character' => null, 'password_include_lower_case' => null, 'password_include_special_character' => null, 'password_include_upper_case' => null, 'password_strength_type' => null, 'password_strength_type_metadata' => null, 'questions_required' => null, 'questions_required_metadata' => null]) * @method Models\AccountPasswordStrengthType accountPasswordStrengthType(array $props = ['options' => null]) * @method Models\AccountPasswordStrengthTypeOption accountPasswordStrengthTypeOption(array $props = ['minimum_length' => null, 'name' => null, 'password_include_digit' => null, 'password_include_digit_or_special_character' => null, 'password_include_lower_case' => null, 'password_include_special_character' => null, 'password_include_upper_case' => null]) - * @method Models\AccountRoleSettings accountRoleSettings(array $props = ['allow_account_management' => null, 'allow_account_management_metadata' => null, 'allow_api_access' => null, 'allow_api_access_metadata' => null, 'allow_api_access_to_account' => null, 'allow_api_access_to_account_metadata' => null, 'allow_api_sending_on_behalf_of_others' => null, 'allow_api_sending_on_behalf_of_others_metadata' => null, 'allow_api_sequential_signing' => null, 'allow_api_sequential_signing_metadata' => null, 'allow_auto_tagging' => null, 'allow_auto_tagging_metadata' => null, 'allow_bulk_sending' => null, 'allow_bulk_sending_metadata' => null, 'allow_docu_sign_desktop_client' => null, 'allow_docu_sign_desktop_client_metadata' => null, 'allowed_address_book_access' => null, 'allowed_address_book_access_metadata' => null, 'allowed_clickwraps_access' => null, 'allowed_clickwraps_access_metadata' => null, 'allowed_template_access' => null, 'allowed_template_access_metadata' => null, 'allowed_to_be_envelope_transfer_recipient' => null, 'allowed_to_be_envelope_transfer_recipient_metadata' => null, 'allow_envelope_sending' => null, 'allow_envelope_sending_metadata' => null, 'allow_e_seal_recipients' => null, 'allow_e_seal_recipients_metadata' => null, 'allow_power_forms_admin_to_access_all_power_form_envelopes' => null, 'allow_power_forms_admin_to_access_all_power_form_envelopes_metadata' => null, 'allow_senders_to_set_recipient_email_language' => null, 'allow_senders_to_set_recipient_email_language_metadata' => null, 'allow_signer_attachments' => null, 'allow_signer_attachments_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'allow_tagging_in_send_and_correct' => null, 'allow_tagging_in_send_and_correct_metadata' => null, 'allow_vaulting' => null, 'allow_vaulting_metadata' => null, 'allow_wet_signing_override' => null, 'allow_wet_signing_override_metadata' => null, 'can_create_workspaces' => null, 'can_create_workspaces_metadata' => null, 'disable_document_upload' => null, 'disable_document_upload_metadata' => null, 'disable_other_actions' => null, 'disable_other_actions_metadata' => null, 'enable_api_request_logging' => null, 'enable_api_request_logging_metadata' => null, 'enable_recipient_viewing_notifications' => null, 'enable_recipient_viewing_notifications_metadata' => null, 'enable_sequential_signing_interface' => null, 'enable_sequential_signing_interface_metadata' => null, 'enable_transaction_point_integration' => null, 'enable_transaction_point_integration_metadata' => null, 'power_form_role' => null, 'power_form_role_metadata' => null, 'receive_completed_self_signed_documents_as_email_links' => null, 'receive_completed_self_signed_documents_as_email_links_metadata' => null, 'signing_ui_version_metadata' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'use_new_docu_sign_experience_interface' => null, 'use_new_docu_sign_experience_interface_metadata' => null, 'use_new_sending_interface' => null, 'use_new_sending_interface_metadata' => null, 'vaulting_mode' => null, 'vaulting_mode_metadata' => null]) + * @method Models\AccountRoleSettings accountRoleSettings(array $props = ['allow_account_management' => null, 'allow_account_management_metadata' => null, 'allow_api_access' => null, 'allow_api_access_metadata' => null, 'allow_api_access_to_account' => null, 'allow_api_access_to_account_metadata' => null, 'allow_api_sending_on_behalf_of_others' => null, 'allow_api_sending_on_behalf_of_others_metadata' => null, 'allow_api_sequential_signing' => null, 'allow_api_sequential_signing_metadata' => null, 'allow_auto_tagging' => null, 'allow_auto_tagging_metadata' => null, 'allow_bulk_sending' => null, 'allow_bulk_sending_metadata' => null, 'allow_docu_sign_desktop_client' => null, 'allow_docu_sign_desktop_client_metadata' => null, 'allowed_address_book_access' => null, 'allowed_address_book_access_metadata' => null, 'allowed_clickwraps_access' => null, 'allowed_clickwraps_access_metadata' => null, 'allowed_template_access' => null, 'allowed_template_access_metadata' => null, 'allowed_to_be_envelope_transfer_recipient' => null, 'allowed_to_be_envelope_transfer_recipient_metadata' => null, 'allow_envelope_sending' => null, 'allow_envelope_sending_metadata' => null, 'allow_e_seal_recipients' => null, 'allow_e_seal_recipients_metadata' => null, 'allow_power_forms_admin_to_access_all_power_form_envelopes' => null, 'allow_power_forms_admin_to_access_all_power_form_envelopes_metadata' => null, 'allow_senders_to_set_recipient_email_language' => null, 'allow_senders_to_set_recipient_email_language_metadata' => null, 'allow_signer_attachments' => null, 'allow_signer_attachments_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'allow_tagging_in_send_and_correct' => null, 'allow_tagging_in_send_and_correct_metadata' => null, 'allow_vaulting' => null, 'allow_vaulting_metadata' => null, 'allow_wet_signing_override' => null, 'allow_wet_signing_override_metadata' => null, 'can_create_workspaces' => null, 'can_create_workspaces_metadata' => null, 'can_send_envelopes_via_sms' => null, 'can_send_envelopes_via_sms_metadata' => null, 'disable_document_upload' => null, 'disable_document_upload_metadata' => null, 'disable_other_actions' => null, 'disable_other_actions_metadata' => null, 'enable_api_request_logging' => null, 'enable_api_request_logging_metadata' => null, 'enable_recipient_viewing_notifications' => null, 'enable_recipient_viewing_notifications_metadata' => null, 'enable_sequential_signing_interface' => null, 'enable_sequential_signing_interface_metadata' => null, 'enable_transaction_point_integration' => null, 'enable_transaction_point_integration_metadata' => null, 'power_form_role' => null, 'power_form_role_metadata' => null, 'receive_completed_self_signed_documents_as_email_links' => null, 'receive_completed_self_signed_documents_as_email_links_metadata' => null, 'signing_ui_version_metadata' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'use_new_docu_sign_experience_interface' => null, 'use_new_docu_sign_experience_interface_metadata' => null, 'use_new_sending_interface' => null, 'use_new_sending_interface_metadata' => null, 'vaulting_mode' => null, 'vaulting_mode_metadata' => null]) * @method Models\AccountSeals accountSeals(array $props = ['seals' => null]) - * @method Models\AccountSettingsInformation accountSettingsInformation(array $props = ['access_code_format' => null, 'account_date_time_format' => null, 'account_date_time_format_metadata' => null, 'account_default_language' => null, 'account_default_language_metadata' => null, 'account_name' => null, 'account_name_metadata' => null, 'account_notification' => null, 'account_ui_settings' => null, 'adopt_sig_config' => null, 'adopt_sig_config_metadata' => null, 'advanced_correct' => null, 'advanced_correct_metadata' => null, 'allow_access_code_format' => null, 'allow_access_code_format_metadata' => null, 'allow_account_management_granular' => null, 'allow_account_management_granular_metadata' => null, 'allow_account_member_name_change' => null, 'allow_account_member_name_change_metadata' => null, 'allow_advanced_recipient_routing_conditional' => null, 'allow_advanced_recipient_routing_conditional_metadata' => null, 'allow_agent_name_email_edit' => null, 'allow_agent_name_email_edit_metadata' => null, 'allow_agreement_actions' => null, 'allow_agreement_actions_metadata' => null, 'allow_auto_nav_settings' => null, 'allow_auto_nav_settings_metadata' => null, 'allow_auto_tagging' => null, 'allow_auto_tagging_metadata' => null, 'allow_bulk_send' => null, 'allow_bulk_send_metadata' => null, 'allow_cd_withdraw' => null, 'allow_cd_withdraw_metadata' => null, 'allow_connect_http_listener_configs' => null, 'allow_connect_send_finish_later' => null, 'allow_connect_send_finish_later_metadata' => null, 'allow_connect_unified_payload_ui' => null, 'allow_consumer_disclosure_override' => null, 'allow_consumer_disclosure_override_metadata' => null, 'allow_data_download' => null, 'allow_data_download_metadata' => null, 'allow_document_disclosures' => null, 'allow_document_disclosures_metadata' => null, 'allow_documents_on_signed_envelopes' => null, 'allow_documents_on_signed_envelopes_metadata' => null, 'allow_document_visibility' => null, 'allow_document_visibility_metadata' => null, 'allow_e_hanko_stamps' => null, 'allow_e_hanko_stamps_metadata' => null, 'allow_e_note_e_original' => null, 'allow_e_note_e_original_metadata' => null, 'allow_envelope_correct' => null, 'allow_envelope_correct_metadata' => null, 'allow_envelope_custody_transfer' => null, 'allow_envelope_custody_transfer_metadata' => null, 'allow_envelope_custom_fields' => null, 'allow_envelope_custom_fields_metadata' => null, 'allow_envelope_publish_reporting' => null, 'allow_envelope_publish_reporting_metadata' => null, 'allow_envelope_reporting' => null, 'allow_envelope_reporting_metadata' => null, 'allow_expression' => null, 'allow_expression_metadata' => null, 'allow_express_signer_certificate' => null, 'allow_express_signer_certificate_metadata' => null, 'allow_extended_sending_resource_file' => null, 'allow_extended_sending_resource_file_metadata' => null, 'allow_external_signature_pad' => null, 'allow_external_signature_pad_metadata' => null, 'allow_idv_level1' => null, 'allow_idv_level1_metadata' => null, 'allow_idv_platform' => null, 'allow_idv_platform_metadata' => null, 'allow_in_person' => null, 'allow_in_person_metadata' => null, 'allow_managed_stamps' => null, 'allow_managed_stamps_metadata' => null, 'allow_markup' => null, 'allow_markup_metadata' => null, 'allow_member_time_zone' => null, 'allow_member_time_zone_metadata' => null, 'allow_merge_fields' => null, 'allow_merge_fields_metadata' => null, 'allow_multiple_brand_profiles' => null, 'allow_multiple_brand_profiles_metadata' => null, 'allow_multiple_signer_attachments' => null, 'allow_multiple_signer_attachments_metadata' => null, 'allow_non_us_phone_auth' => null, 'allow_non_us_phone_auth_metadata' => null, 'allow_ocr_of_envelope_documents' => null, 'allow_ocr_of_envelope_documents_metadata' => null, 'allow_offline_signing' => null, 'allow_offline_signing_metadata' => null, 'allow_open_trust_signer_certificate' => null, 'allow_open_trust_signer_certificate_metadata' => null, 'allow_organizations' => null, 'allow_organizations_metadata' => null, 'allow_payment_processing' => null, 'allow_payment_processing_metadata' => null, 'allow_personal_signer_certificate' => null, 'allow_personal_signer_certificate_metadata' => null, 'allow_phone_authentication' => null, 'allow_phone_authentication_metadata' => null, 'allow_phone_auth_override' => null, 'allow_phone_auth_override_metadata' => null, 'allow_private_signing_groups' => null, 'allow_private_signing_groups_metadata' => null, 'allow_reminders' => null, 'allow_reminders_metadata' => null, 'allow_remote_notary' => null, 'allow_remote_notary_metadata' => null, 'allow_resource_file_branding' => null, 'allow_resource_file_branding_metadata' => null, 'allow_safe_bio_pharma_signer_certificate' => null, 'allow_safe_bio_pharma_signer_certificate_metadata' => null, 'allow_security_appliance' => null, 'allow_security_appliance_metadata' => null, 'allow_send_to_certified_delivery' => null, 'allow_send_to_certified_delivery_metadata' => null, 'allow_send_to_intermediary' => null, 'allow_send_to_intermediary_metadata' => null, 'allow_server_templates' => null, 'allow_server_templates_metadata' => null, 'allow_set_embedded_recipient_start_url' => null, 'allow_set_embedded_recipient_start_url_metadata' => null, 'allow_shared_tabs' => null, 'allow_shared_tabs_metadata' => null, 'allow_signature_stamps' => null, 'allow_signature_stamps_metadata' => null, 'allow_sign_document_from_home_page' => null, 'allow_sign_document_from_home_page_metadata' => null, 'allow_signer_reassign' => null, 'allow_signer_reassign_metadata' => null, 'allow_signer_reassign_override' => null, 'allow_signer_reassign_override_metadata' => null, 'allow_signing_extensions' => null, 'allow_signing_extensions_metadata' => null, 'allow_signing_groups' => null, 'allow_signing_groups_metadata' => null, 'allow_signing_radio_deselect' => null, 'allow_signing_radio_deselect_metadata' => null, 'allow_sign_now' => null, 'allow_sign_now_metadata' => null, 'allow_sms_delivery' => null, 'allow_sms_delivery_metadata' => null, 'allow_social_id_login' => null, 'allow_social_id_login_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'allow_users_to_access_directory' => null, 'allow_users_to_access_directory_metadata' => null, 'allow_value_insights' => null, 'allow_value_insights_metadata' => null, 'anchor_population_scope' => null, 'anchor_population_scope_metadata' => null, 'anchor_tag_versioned_placement_enabled' => null, 'anchor_tag_versioned_placement_metadata_enabled' => null, 'attach_completed_envelope' => null, 'attach_completed_envelope_metadata' => null, 'authentication_check' => null, 'authentication_check_metadata' => null, 'auto_nav_rule' => null, 'auto_nav_rule_metadata' => null, 'auto_provision_signer_account' => null, 'auto_provision_signer_account_metadata' => null, 'bcc_email_archive' => null, 'bcc_email_archive_metadata' => null, 'beta_switch_configuration' => null, 'beta_switch_configuration_metadata' => null, 'billing_address' => null, 'billing_address_metadata' => null, 'bulk_send' => null, 'bulk_send_max_copies_in_batch' => null, 'bulk_send_max_unprocessed_envelopes_count' => null, 'bulk_send_metadata' => null, 'can_self_brand_send' => null, 'can_self_brand_send_metadata' => null, 'can_self_brand_sign' => null, 'can_self_brand_sign_metadata' => null, 'can_use_salesforce_o_auth' => null, 'can_use_salesforce_o_auth_metadata' => null, 'capture_voice_recording' => null, 'capture_voice_recording_metadata' => null, 'cfr_use_wide_image' => null, 'cfr_use_wide_image_metadata' => null, 'check_for_multiple_admins_on_account' => null, 'check_for_multiple_admins_on_account_metadata' => null, 'chrome_signature_enabled' => null, 'chrome_signature_enabled_metadata' => null, 'comment_email_show_message_text' => null, 'comment_email_show_message_text_metadata' => null, 'comments_allow_envelope_override' => null, 'comments_allow_envelope_override_metadata' => null, 'conditional_fields_enabled' => null, 'conditional_fields_enabled_metadata' => null, 'consumer_disclosure_frequency' => null, 'consumer_disclosure_frequency_metadata' => null, 'convert_pdf_fields' => null, 'convert_pdf_fields_metadata' => null, 'data_population_scope' => null, 'data_population_scope_metadata' => null, 'disable_mobile_app' => null, 'disable_mobile_app_metadata' => null, 'disable_mobile_push_notifications' => null, 'disable_mobile_push_notifications_metadata' => null, 'disable_mobile_sending' => null, 'disable_mobile_sending_metadata' => null, 'disable_multiple_sessions' => null, 'disable_multiple_sessions_metadata' => null, 'disable_purge_notifications_for_sender_metadata' => null, 'disable_signer_cert_view' => null, 'disable_signer_cert_view_metadata' => null, 'disable_signer_history_view' => null, 'disable_signer_history_view_metadata' => null, 'disable_style_signature' => null, 'disable_style_signature_metadata' => null, 'disable_upload_signature' => null, 'disable_upload_signature_metadata' => null, 'disable_user_sharing' => null, 'disable_user_sharing_metadata' => null, 'display_beta_switch' => null, 'display_beta_switch_metadata' => null, 'document_conversion_restrictions' => null, 'document_conversion_restrictions_metadata' => null, 'document_retention' => null, 'document_retention_metadata' => null, 'document_retention_purge_tabs' => null, 'document_visibility' => null, 'document_visibility_metadata' => null, 'email_template_version' => null, 'email_template_version_metadata' => null, 'enable_access_code_generator' => null, 'enable_access_code_generator_metadata' => null, 'enable_advanced_payments' => null, 'enable_advanced_payments_metadata' => null, 'enable_advanced_power_forms' => null, 'enable_advanced_power_forms_metadata' => null, 'enable_agreement_actions_for_clm' => null, 'enable_agreement_actions_for_clm_metadata' => null, 'enable_agreement_actions_for_e_sign' => null, 'enable_agreement_actions_for_e_sign_metadata' => null, 'enable_auto_nav' => null, 'enable_auto_nav_metadata' => null, 'enable_calculated_fields' => null, 'enable_calculated_fields_metadata' => null, 'enable_clickwraps' => null, 'enable_clickwraps_metadata' => null, 'enable_comments_history_download_in_signing' => null, 'enable_comments_history_download_in_signing_metadata' => null, 'enable_customer_satisfaction_metric_tracking' => null, 'enable_customer_satisfaction_metric_tracking_metadata' => null, 'enable_ds_pro' => null, 'enable_ds_pro_metadata' => null, 'enable_envelope_stamping_by_account_admin' => null, 'enable_envelope_stamping_by_account_admin_metadata' => null, 'enable_envelope_stamping_by_ds_admin' => null, 'enable_envelope_stamping_by_ds_admin_metadata' => null, 'enable_in_browser_editor' => null, 'enable_in_browser_editor_metadata' => null, 'enable_payment_processing' => null, 'enable_payment_processing_metadata' => null, 'enable_power_form' => null, 'enable_power_form_direct' => null, 'enable_power_form_direct_metadata' => null, 'enable_power_form_metadata' => null, 'enable_recipient_domain_validation' => null, 'enable_recipient_domain_validation_metadata' => null, 'enable_report_links' => null, 'enable_report_links_metadata' => null, 'enable_require_sign_on_paper' => null, 'enable_require_sign_on_paper_metadata' => null, 'enable_reserved_domain' => null, 'enable_reserved_domain_metadata' => null, 'enable_responsive_signing' => null, 'enable_responsive_signing_metadata' => null, 'enable_scheduled_release' => null, 'enable_scheduled_release_metadata' => null, 'enable_search_ui' => null, 'enable_search_ui_metadata' => null, 'enable_sending_tags_font_settings' => null, 'enable_sending_tags_font_settings_metadata' => null, 'enable_send_to_agent' => null, 'enable_send_to_agent_metadata' => null, 'enable_send_to_intermediary' => null, 'enable_send_to_intermediary_metadata' => null, 'enable_send_to_manage' => null, 'enable_send_to_manage_metadata' => null, 'enable_sequential_signing_api' => null, 'enable_sequential_signing_api_metadata' => null, 'enable_sequential_signing_ui' => null, 'enable_sequential_signing_ui_metadata' => null, 'enable_signer_attachments' => null, 'enable_signer_attachments_metadata' => null, 'enable_signing_extension_comments' => null, 'enable_signing_extension_comments_metadata' => null, 'enable_signing_extension_conversations' => null, 'enable_signing_extension_conversations_metadata' => null, 'enable_signing_order_settings_for_account' => null, 'enable_signing_order_settings_for_account_metadata' => null, 'enable_sign_on_paper' => null, 'enable_sign_on_paper_metadata' => null, 'enable_sign_on_paper_override' => null, 'enable_sign_on_paper_override_metadata' => null, 'enable_sign_with_notary' => null, 'enable_sign_with_notary_metadata' => null, 'enable_smart_contracts' => null, 'enable_smart_contracts_metadata' => null, 'enable_sms_authentication' => null, 'enable_sms_authentication_metadata' => null, 'enable_social_id_login' => null, 'enable_social_id_login_metadata' => null, 'enable_strike_through' => null, 'enable_strike_through_metadata' => null, 'enable_transaction_point' => null, 'enable_transaction_point_metadata' => null, 'enable_vaulting' => null, 'enable_vaulting_metadata' => null, 'enable_witnessing' => null, 'enable_witnessing_metadata' => null, 'enforce_template_name_uniqueness' => null, 'enforce_template_name_uniqueness_metadata' => null, 'envelope_integration_allowed' => null, 'envelope_integration_allowed_metadata' => null, 'envelope_integration_enabled' => null, 'envelope_integration_enabled_metadata' => null, 'envelope_stamping_default_value' => null, 'envelope_stamping_default_value_metadata' => null, 'express_send' => null, 'express_send_allow_tabs' => null, 'express_send_allow_tabs_metadata' => null, 'express_send_metadata' => null, 'external_document_sources' => null, 'external_signature_pad_type' => null, 'external_signature_pad_type_metadata' => null, 'fax_out_enabled' => null, 'fax_out_enabled_metadata' => null, 'guided_forms_html_allowed' => null, 'guided_forms_html_allowed_metadata' => null, 'hide_account_address_in_co_c' => null, 'hide_account_address_in_co_c_metadata' => null, 'hide_pricing' => null, 'hide_pricing_metadata' => null, 'id_check_configurations' => null, 'id_check_expire' => null, 'id_check_expire_days' => null, 'id_check_expire_days_metadata' => null, 'id_check_expire_metadata' => null, 'id_check_expire_minutes' => null, 'id_check_expire_minutes_metadata' => null, 'id_check_required' => null, 'id_check_required_metadata' => null, 'identity_verification' => null, 'identity_verification_metadata' => null, 'ignore_error_if_anchor_tab_not_found' => null, 'ignore_error_if_anchor_tab_not_found_metadata_enabled' => null, 'in_person_id_check_question' => null, 'in_person_id_check_question_metadata' => null, 'in_person_signing_enabled' => null, 'in_person_signing_enabled_metadata' => null, 'in_session_enabled' => null, 'in_session_enabled_metadata' => null, 'in_session_suppress_emails' => null, 'in_session_suppress_emails_metadata' => null, 'maximum_signing_groups' => null, 'maximum_signing_groups_metadata' => null, 'maximum_users_per_signing_group' => null, 'maximum_users_per_signing_group_metadata' => null, 'max_number_of_custom_stamps' => null, 'mobile_session_timeout' => null, 'mobile_session_timeout_metadata' => null, 'number_of_active_custom_stamps' => null, 'opt_in_mobile_signing_v02' => null, 'opt_in_mobile_signing_v02_metadata' => null, 'opt_out_auto_nav_text_and_tab_color_updates' => null, 'opt_out_auto_nav_text_and_tab_color_updates_metadata' => null, 'opt_out_new_platform_seal' => null, 'opt_out_new_platform_seal_platform_metadata' => null, 'phone_auth_recipient_may_provide_phone_number' => null, 'phone_auth_recipient_may_provide_phone_number_metadata' => null, 'pki_sign_downloaded_pdf_docs' => null, 'pki_sign_downloaded_pdf_docs_metadata' => null, 'recipients_can_sign_offline' => null, 'recipients_can_sign_offline_metadata' => null, 'recipient_signing_auto_navigation_control' => null, 'recipient_signing_auto_navigation_control_metadata' => null, 'require21_cf_rpt11_compliance' => null, 'require21_cf_rpt11_compliance_metadata' => null, 'require_decline_reason' => null, 'require_decline_reason_metadata' => null, 'require_external_user_management' => null, 'require_external_user_management_metadata' => null, 'require_signer_certificate_type' => null, 'require_signer_certificate_type_metadata' => null, 'rsa_verid_account_name' => null, 'rsa_verid_password' => null, 'rsa_verid_ruleset' => null, 'rsa_verid_user_id' => null, 'self_signed_recipient_email_document' => null, 'self_signed_recipient_email_document_metadata' => null, 'self_signed_recipient_email_document_user_override' => null, 'self_signed_recipient_email_document_user_override_metadata' => null, 'sender_can_sign_in_each_location' => null, 'sender_can_sign_in_each_location_metadata' => null, 'sender_must_authenticate_signing' => null, 'sender_must_authenticate_signing_metadata' => null, 'sending_tags_font_color' => null, 'sending_tags_font_color_metadata' => null, 'sending_tags_font_name' => null, 'sending_tags_font_name_metadata' => null, 'sending_tags_font_size' => null, 'sending_tags_font_size_metadata' => null, 'send_to_certified_delivery_enabled' => null, 'send_to_certified_delivery_enabled_metadata' => null, 'session_timeout' => null, 'session_timeout_metadata' => null, 'set_recip_email_lang' => null, 'set_recip_email_lang_metadata' => null, 'set_recip_sign_lang' => null, 'set_recip_sign_lang_metadata' => null, 'shared_template_folders' => null, 'shared_template_folders_metadata' => null, 'show_complete_dialog_in_embedded_session' => null, 'show_complete_dialog_in_embedded_session_metadata' => null, 'show_conditional_routing_on_send' => null, 'show_conditional_routing_on_send_metadata' => null, 'show_initial_conditional_fields' => null, 'show_initial_conditional_fields_metadata' => null, 'show_localized_watermarks' => null, 'show_localized_watermarks_metadata' => null, 'show_tutorials' => null, 'show_tutorials_metadata' => null, 'signature_providers' => null, 'signature_providers_metadata' => null, 'sign_date_format' => null, 'sign_date_format_metadata' => null, 'signer_attach_certificate_to_envelope_pdf' => null, 'signer_attach_certificate_to_envelope_pdf_metadata' => null, 'signer_attach_concat' => null, 'signer_attach_concat_metadata' => null, 'signer_can_create_account' => null, 'signer_can_create_account_metadata' => null, 'signer_can_sign_on_mobile' => null, 'signer_can_sign_on_mobile_metadata' => null, 'signer_in_session_use_envelope_complete_email' => null, 'signer_in_session_use_envelope_complete_email_metadata' => null, 'signer_login_requirements' => null, 'signer_login_requirements_metadata' => null, 'signer_must_have_account' => null, 'signer_must_have_account_metadata' => null, 'signer_must_login_to_sign' => null, 'signer_must_login_to_sign_metadata' => null, 'signer_show_secure_field_initial_values' => null, 'signer_show_secure_field_initial_values_metadata' => null, 'signing_session_timeout' => null, 'signing_session_timeout_metadata' => null, 'signing_ui_version' => null, 'signing_ui_version_metadata' => null, 'sign_time_format' => null, 'sign_time_format_metadata' => null, 'sign_time_show_am_pm' => null, 'sign_time_show_am_pm_metadata' => null, 'simplified_sending_enabled' => null, 'simplified_sending_enabled_metadata' => null, 'single_sign_on_enabled' => null, 'single_sign_on_enabled_metadata' => null, 'skip_auth_completed_envelopes' => null, 'skip_auth_completed_envelopes_metadata' => null, 'social_id_recip_auth' => null, 'social_id_recip_auth_metadata' => null, 'specify_document_visibility' => null, 'specify_document_visibility_metadata' => null, 'start_in_advanced_correct' => null, 'start_in_advanced_correct_metadata' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'suppress_certificate_enforcement' => null, 'suppress_certificate_enforcement_metadata' => null, 'tab_account_settings' => null, 'timezone_offset_api' => null, 'timezone_offset_api_metadata' => null, 'timezone_offset_ui' => null, 'timezone_offset_ui_metadata' => null, 'universal_signature_opt_in' => null, 'use_account_level_email' => null, 'use_account_level_email_metadata' => null, 'use_consumer_disclosure' => null, 'use_consumer_disclosure_metadata' => null, 'use_consumer_disclosure_within_account' => null, 'use_consumer_disclosure_within_account_metadata' => null, 'use_derived_keys' => null, 'use_derived_keys_metadata' => null, 'use_docu_sign_express_signer_certificate' => null, 'use_docu_sign_express_signer_certificate_metadata' => null, 'use_multi_app_groups_data' => null, 'use_multi_app_groups_data_metadata' => null, 'use_new_blob_for_pdf' => null, 'use_new_blob_for_pdf_metadata' => null, 'use_safe_signer_certificates' => null, 'use_safe_signer_certificates_metadata' => null, 'uses_api' => null, 'uses_api_metadata' => null, 'use_signature_provider_platform' => null, 'use_signature_provider_platform_metadata' => null, 'validations_allowed' => null, 'validations_allowed_metadata' => null, 'validations_brand' => null, 'validations_brand_metadata' => null, 'validations_cadence' => null, 'validations_cadence_metadata' => null, 'validations_enabled' => null, 'validations_enabled_metadata' => null, 'validations_report' => null, 'validations_report_metadata' => null, 'water_mark_enabled' => null, 'water_mark_enabled_metadata' => null, 'write_reminder_to_envelope_history' => null, 'write_reminder_to_envelope_history_metadata' => null, 'wurfl_min_allowable_screen_size' => null, 'wurfl_min_allowable_screen_size_metadata' => null]) + * @method Models\AccountSettingsInformation accountSettingsInformation(array $props = ['access_code_format' => null, 'account_date_time_format' => null, 'account_date_time_format_metadata' => null, 'account_default_language' => null, 'account_default_language_metadata' => null, 'account_name' => null, 'account_name_metadata' => null, 'account_notification' => null, 'account_ui_settings' => null, 'adopt_sig_config' => null, 'adopt_sig_config_metadata' => null, 'advanced_correct' => null, 'advanced_correct_metadata' => null, 'allow_access_code_format' => null, 'allow_access_code_format_metadata' => null, 'allow_account_management_granular' => null, 'allow_account_management_granular_metadata' => null, 'allow_account_member_name_change' => null, 'allow_account_member_name_change_metadata' => null, 'allow_advanced_recipient_routing_conditional' => null, 'allow_advanced_recipient_routing_conditional_metadata' => null, 'allow_agent_name_email_edit' => null, 'allow_agent_name_email_edit_metadata' => null, 'allow_agreement_actions' => null, 'allow_agreement_actions_metadata' => null, 'allow_auto_nav_settings' => null, 'allow_auto_nav_settings_metadata' => null, 'allow_auto_tagging' => null, 'allow_auto_tagging_metadata' => null, 'allow_bulk_send' => null, 'allow_bulk_send_metadata' => null, 'allow_cd_withdraw' => null, 'allow_cd_withdraw_metadata' => null, 'allow_connect_http_listener_configs' => null, 'allow_connect_send_finish_later' => null, 'allow_connect_send_finish_later_metadata' => null, 'allow_connect_unified_payload_ui' => null, 'allow_consumer_disclosure_override' => null, 'allow_consumer_disclosure_override_metadata' => null, 'allow_data_download' => null, 'allow_data_download_metadata' => null, 'allow_document_disclosures' => null, 'allow_document_disclosures_metadata' => null, 'allow_documents_on_signed_envelopes' => null, 'allow_documents_on_signed_envelopes_metadata' => null, 'allow_document_visibility' => null, 'allow_document_visibility_metadata' => null, 'allow_e_hanko_stamps' => null, 'allow_e_hanko_stamps_metadata' => null, 'allow_e_note_e_original' => null, 'allow_e_note_e_original_metadata' => null, 'allow_envelope_correct' => null, 'allow_envelope_correct_metadata' => null, 'allow_envelope_custody_transfer' => null, 'allow_envelope_custody_transfer_metadata' => null, 'allow_envelope_custom_fields' => null, 'allow_envelope_custom_fields_metadata' => null, 'allow_envelope_publish_reporting' => null, 'allow_envelope_publish_reporting_metadata' => null, 'allow_envelope_reporting' => null, 'allow_envelope_reporting_metadata' => null, 'allow_expression' => null, 'allow_expression_metadata' => null, 'allow_express_signer_certificate' => null, 'allow_express_signer_certificate_metadata' => null, 'allow_extended_sending_resource_file' => null, 'allow_extended_sending_resource_file_metadata' => null, 'allow_external_linked_accounts' => null, 'allow_external_linked_accounts_metadata' => null, 'allow_external_signature_pad' => null, 'allow_external_signature_pad_metadata' => null, 'allow_idv_level1' => null, 'allow_idv_level1_metadata' => null, 'allow_idv_level2' => null, 'allow_idv_level2_metadata' => null, 'allow_idv_level3' => null, 'allow_idv_level3_metadata' => null, 'allow_idv_platform' => null, 'allow_idv_platform_metadata' => null, 'allow_in_person' => null, 'allow_in_person_metadata' => null, 'allow_managed_stamps' => null, 'allow_managed_stamps_metadata' => null, 'allow_markup' => null, 'allow_markup_metadata' => null, 'allow_member_time_zone' => null, 'allow_member_time_zone_metadata' => null, 'allow_merge_fields' => null, 'allow_merge_fields_metadata' => null, 'allow_multiple_brand_profiles' => null, 'allow_multiple_brand_profiles_metadata' => null, 'allow_multiple_signer_attachments' => null, 'allow_multiple_signer_attachments_metadata' => null, 'allow_non_us_phone_auth' => null, 'allow_non_us_phone_auth_metadata' => null, 'allow_ocr_of_envelope_documents' => null, 'allow_ocr_of_envelope_documents_metadata' => null, 'allow_offline_signing' => null, 'allow_offline_signing_metadata' => null, 'allow_open_trust_signer_certificate' => null, 'allow_open_trust_signer_certificate_metadata' => null, 'allow_organization_docusign_monitor' => null, 'allow_organization_docusign_monitor_metadata' => null, 'allow_organization_domain_user_management' => null, 'allow_organization_domain_user_management_metadata' => null, 'allow_organizations' => null, 'allow_organizations_metadata' => null, 'allow_organization_sso_management' => null, 'allow_organization_sso_management_metadata' => null, 'allow_organization_to_use_remote_notary' => null, 'allow_organization_to_use_remote_notary_metadata' => null, 'allow_payment_processing' => null, 'allow_payment_processing_metadata' => null, 'allow_personal_signer_certificate' => null, 'allow_personal_signer_certificate_metadata' => null, 'allow_phone_authentication' => null, 'allow_phone_authentication_metadata' => null, 'allow_phone_auth_override' => null, 'allow_phone_auth_override_metadata' => null, 'allow_private_signing_groups' => null, 'allow_private_signing_groups_metadata' => null, 'allow_recipient_connect' => null, 'allow_recipient_connect_metadata' => null, 'allow_reminders' => null, 'allow_reminders_metadata' => null, 'allow_remote_notary' => null, 'allow_remote_notary_metadata' => null, 'allow_resource_file_branding' => null, 'allow_resource_file_branding_metadata' => null, 'allow_safe_bio_pharma_signer_certificate' => null, 'allow_safe_bio_pharma_signer_certificate_metadata' => null, 'allow_security_appliance' => null, 'allow_security_appliance_metadata' => null, 'allow_send_to_certified_delivery' => null, 'allow_send_to_certified_delivery_metadata' => null, 'allow_send_to_intermediary' => null, 'allow_send_to_intermediary_metadata' => null, 'allow_server_templates' => null, 'allow_server_templates_metadata' => null, 'allow_set_embedded_recipient_start_url' => null, 'allow_set_embedded_recipient_start_url_metadata' => null, 'allow_shared_tabs' => null, 'allow_shared_tabs_metadata' => null, 'allow_signature_stamps' => null, 'allow_signature_stamps_metadata' => null, 'allow_sign_document_from_home_page' => null, 'allow_sign_document_from_home_page_metadata' => null, 'allow_signer_reassign' => null, 'allow_signer_reassign_metadata' => null, 'allow_signer_reassign_override' => null, 'allow_signer_reassign_override_metadata' => null, 'allow_signing_extensions' => null, 'allow_signing_extensions_metadata' => null, 'allow_signing_groups' => null, 'allow_signing_groups_metadata' => null, 'allow_signing_insights' => null, 'allow_signing_insights_metadata' => null, 'allow_signing_radio_deselect' => null, 'allow_signing_radio_deselect_metadata' => null, 'allow_sign_now' => null, 'allow_sign_now_metadata' => null, 'allow_sms_delivery' => null, 'allow_sms_delivery_metadata' => null, 'allow_social_id_login' => null, 'allow_social_id_login_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'allow_users_to_access_directory' => null, 'allow_users_to_access_directory_metadata' => null, 'allow_value_insights' => null, 'allow_value_insights_metadata' => null, 'anchor_population_scope' => null, 'anchor_population_scope_metadata' => null, 'anchor_tag_versioned_placement_enabled' => null, 'anchor_tag_versioned_placement_metadata_enabled' => null, 'attach_completed_envelope' => null, 'attach_completed_envelope_metadata' => null, 'authentication_check' => null, 'authentication_check_metadata' => null, 'auto_nav_rule' => null, 'auto_nav_rule_metadata' => null, 'auto_provision_signer_account' => null, 'auto_provision_signer_account_metadata' => null, 'bcc_email_archive' => null, 'bcc_email_archive_metadata' => null, 'beta_switch_configuration' => null, 'beta_switch_configuration_metadata' => null, 'billing_address' => null, 'billing_address_metadata' => null, 'bulk_send' => null, 'bulk_send_max_copies_in_batch' => null, 'bulk_send_max_unprocessed_envelopes_count' => null, 'bulk_send_metadata' => null, 'can_self_brand_send' => null, 'can_self_brand_send_metadata' => null, 'can_self_brand_sign' => null, 'can_self_brand_sign_metadata' => null, 'can_use_salesforce_o_auth' => null, 'can_use_salesforce_o_auth_metadata' => null, 'capture_voice_recording' => null, 'capture_voice_recording_metadata' => null, 'cfr_use_wide_image' => null, 'cfr_use_wide_image_metadata' => null, 'check_for_multiple_admins_on_account' => null, 'check_for_multiple_admins_on_account_metadata' => null, 'chrome_signature_enabled' => null, 'chrome_signature_enabled_metadata' => null, 'comment_email_show_message_text' => null, 'comment_email_show_message_text_metadata' => null, 'comments_allow_envelope_override' => null, 'comments_allow_envelope_override_metadata' => null, 'conditional_fields_enabled' => null, 'conditional_fields_enabled_metadata' => null, 'consumer_disclosure_frequency' => null, 'consumer_disclosure_frequency_metadata' => null, 'convert_pdf_fields' => null, 'convert_pdf_fields_metadata' => null, 'data_population_scope' => null, 'data_population_scope_metadata' => null, 'disable_auto_template_matching' => null, 'disable_auto_template_matching_metadata' => null, 'disable_mobile_app' => null, 'disable_mobile_app_metadata' => null, 'disable_mobile_push_notifications' => null, 'disable_mobile_push_notifications_metadata' => null, 'disable_mobile_sending' => null, 'disable_mobile_sending_metadata' => null, 'disable_multiple_sessions' => null, 'disable_multiple_sessions_metadata' => null, 'disable_purge_notifications_for_sender_metadata' => null, 'disable_signer_cert_view' => null, 'disable_signer_cert_view_metadata' => null, 'disable_signer_history_view' => null, 'disable_signer_history_view_metadata' => null, 'disable_style_signature' => null, 'disable_style_signature_metadata' => null, 'disable_upload_signature' => null, 'disable_upload_signature_metadata' => null, 'disable_user_sharing' => null, 'disable_user_sharing_metadata' => null, 'display_beta_switch' => null, 'display_beta_switch_metadata' => null, 'document_conversion_restrictions' => null, 'document_conversion_restrictions_metadata' => null, 'document_retention' => null, 'document_retention_metadata' => null, 'document_retention_purge_tabs' => null, 'document_visibility' => null, 'document_visibility_metadata' => null, 'email_template_version' => null, 'email_template_version_metadata' => null, 'enable_access_code_generator' => null, 'enable_access_code_generator_metadata' => null, 'enable_advanced_payments' => null, 'enable_advanced_payments_metadata' => null, 'enable_advanced_power_forms' => null, 'enable_advanced_power_forms_metadata' => null, 'enable_agreement_actions_for_clm' => null, 'enable_agreement_actions_for_clm_metadata' => null, 'enable_agreement_actions_for_e_sign' => null, 'enable_agreement_actions_for_e_sign_metadata' => null, 'enable_auto_nav' => null, 'enable_auto_nav_metadata' => null, 'enable_bcc_dummy_link' => null, 'enable_bcc_dummy_link_metadata' => null, 'enable_calculated_fields' => null, 'enable_calculated_fields_metadata' => null, 'enable_clickwraps' => null, 'enable_clickwraps_metadata' => null, 'enable_comments_history_download_in_signing' => null, 'enable_comments_history_download_in_signing_metadata' => null, 'enable_customer_satisfaction_metric_tracking' => null, 'enable_customer_satisfaction_metric_tracking_metadata' => null, 'enable_ds_pro' => null, 'enable_ds_pro_metadata' => null, 'enable_envelope_stamping_by_account_admin' => null, 'enable_envelope_stamping_by_account_admin_metadata' => null, 'enable_envelope_stamping_by_ds_admin' => null, 'enable_envelope_stamping_by_ds_admin_metadata' => null, 'enable_esign_communities' => null, 'enable_esign_communities_metadata' => null, 'enable_id_fx_intuit_kba' => null, 'enable_id_fx_intuit_kba_metadata' => null, 'enable_in_browser_editor' => null, 'enable_in_browser_editor_metadata' => null, 'enable_payment_processing' => null, 'enable_payment_processing_metadata' => null, 'enable_pdfa_conversion' => null, 'enable_pdfa_conversion_metadata' => null, 'enable_power_form' => null, 'enable_power_form_direct' => null, 'enable_power_form_direct_metadata' => null, 'enable_power_form_metadata' => null, 'enable_recipient_domain_validation' => null, 'enable_recipient_domain_validation_metadata' => null, 'enable_recipient_may_provide_phone_number' => null, 'enable_recipient_may_provide_phone_number_metadata' => null, 'enable_report_links' => null, 'enable_report_links_metadata' => null, 'enable_require_sign_on_paper' => null, 'enable_require_sign_on_paper_metadata' => null, 'enable_reserved_domain' => null, 'enable_reserved_domain_metadata' => null, 'enable_responsive_signing' => null, 'enable_responsive_signing_metadata' => null, 'enable_scheduled_release' => null, 'enable_scheduled_release_metadata' => null, 'enable_search' => null, 'enable_search_metadata' => null, 'enable_search_ui' => null, 'enable_search_ui_metadata' => null, 'enable_sending_tags_font_settings' => null, 'enable_sending_tags_font_settings_metadata' => null, 'enable_send_to_agent' => null, 'enable_send_to_agent_metadata' => null, 'enable_send_to_intermediary' => null, 'enable_send_to_intermediary_metadata' => null, 'enable_send_to_manage' => null, 'enable_send_to_manage_metadata' => null, 'enable_sequential_signing_api' => null, 'enable_sequential_signing_api_metadata' => null, 'enable_sequential_signing_ui' => null, 'enable_sequential_signing_ui_metadata' => null, 'enable_signer_attachments' => null, 'enable_signer_attachments_metadata' => null, 'enable_signing_extension_comments' => null, 'enable_signing_extension_comments_metadata' => null, 'enable_signing_extension_conversations' => null, 'enable_signing_extension_conversations_metadata' => null, 'enable_signing_order_settings_for_account' => null, 'enable_signing_order_settings_for_account_metadata' => null, 'enable_sign_on_paper' => null, 'enable_sign_on_paper_metadata' => null, 'enable_sign_on_paper_override' => null, 'enable_sign_on_paper_override_metadata' => null, 'enable_sign_with_notary' => null, 'enable_sign_with_notary_metadata' => null, 'enable_smart_contracts' => null, 'enable_smart_contracts_metadata' => null, 'enable_sms_authentication' => null, 'enable_sms_authentication_metadata' => null, 'enable_sms_delivery_additional_notification' => null, 'enable_sms_delivery_additional_notification_metadata' => null, 'enable_social_id_login' => null, 'enable_social_id_login_metadata' => null, 'enable_strike_through' => null, 'enable_strike_through_metadata' => null, 'enable_transaction_point' => null, 'enable_transaction_point_metadata' => null, 'enable_vaulting' => null, 'enable_vaulting_metadata' => null, 'enable_witnessing' => null, 'enable_witnessing_metadata' => null, 'enforce_template_name_uniqueness' => null, 'enforce_template_name_uniqueness_metadata' => null, 'envelope_integration_allowed' => null, 'envelope_integration_allowed_metadata' => null, 'envelope_integration_enabled' => null, 'envelope_integration_enabled_metadata' => null, 'envelope_stamping_default_value' => null, 'envelope_stamping_default_value_metadata' => null, 'express_send' => null, 'express_send_allow_tabs' => null, 'express_send_allow_tabs_metadata' => null, 'express_send_metadata' => null, 'external_document_sources' => null, 'external_signature_pad_type' => null, 'external_signature_pad_type_metadata' => null, 'fax_out_enabled' => null, 'fax_out_enabled_metadata' => null, 'guided_forms_html_allowed' => null, 'guided_forms_html_allowed_metadata' => null, 'has_recipient_connect_claimed_domain' => null, 'hide_account_address_in_co_c' => null, 'hide_account_address_in_co_c_metadata' => null, 'hide_pricing' => null, 'hide_pricing_metadata' => null, 'id_check_configurations' => null, 'id_check_expire' => null, 'id_check_expire_days' => null, 'id_check_expire_days_metadata' => null, 'id_check_expire_metadata' => null, 'id_check_expire_minutes' => null, 'id_check_expire_minutes_metadata' => null, 'id_check_required' => null, 'id_check_required_metadata' => null, 'identity_verification' => null, 'identity_verification_metadata' => null, 'idfx_phone_authentication_override' => null, 'idfx_phone_authentication_override_metadata' => null, 'ignore_error_if_anchor_tab_not_found' => null, 'ignore_error_if_anchor_tab_not_found_metadata_enabled' => null, 'in_person_id_check_question' => null, 'in_person_id_check_question_metadata' => null, 'in_person_signing_enabled' => null, 'in_person_signing_enabled_metadata' => null, 'in_session_enabled' => null, 'in_session_enabled_metadata' => null, 'in_session_suppress_emails' => null, 'in_session_suppress_emails_metadata' => null, 'linked_external_primary_accounts' => null, 'maximum_signing_groups' => null, 'maximum_signing_groups_metadata' => null, 'maximum_users_per_signing_group' => null, 'maximum_users_per_signing_group_metadata' => null, 'max_number_of_custom_stamps' => null, 'mobile_session_timeout' => null, 'mobile_session_timeout_metadata' => null, 'number_of_active_custom_stamps' => null, 'opt_in_mobile_signing_v02' => null, 'opt_in_mobile_signing_v02_metadata' => null, 'opt_out_auto_nav_text_and_tab_color_updates' => null, 'opt_out_auto_nav_text_and_tab_color_updates_metadata' => null, 'opt_out_new_platform_seal' => null, 'opt_out_new_platform_seal_platform_metadata' => null, 'phone_auth_recipient_may_provide_phone_number' => null, 'phone_auth_recipient_may_provide_phone_number_metadata' => null, 'pki_sign_downloaded_pdf_docs' => null, 'pki_sign_downloaded_pdf_docs_metadata' => null, 'read_only_mode' => null, 'read_only_mode_metadata' => null, 'recipients_can_sign_offline' => null, 'recipients_can_sign_offline_metadata' => null, 'recipient_signing_auto_navigation_control' => null, 'recipient_signing_auto_navigation_control_metadata' => null, 'require21_cf_rpt11_compliance' => null, 'require21_cf_rpt11_compliance_metadata' => null, 'require_decline_reason' => null, 'require_decline_reason_metadata' => null, 'require_external_user_management' => null, 'require_external_user_management_metadata' => null, 'require_signer_certificate_type' => null, 'require_signer_certificate_type_metadata' => null, 'rsa_verid_account_name' => null, 'rsa_verid_password' => null, 'rsa_verid_ruleset' => null, 'rsa_verid_user_id' => null, 'self_signed_recipient_email_document' => null, 'self_signed_recipient_email_document_metadata' => null, 'self_signed_recipient_email_document_user_override' => null, 'self_signed_recipient_email_document_user_override_metadata' => null, 'sender_can_sign_in_each_location' => null, 'sender_can_sign_in_each_location_metadata' => null, 'sender_must_authenticate_signing' => null, 'sender_must_authenticate_signing_metadata' => null, 'sending_tags_font_color' => null, 'sending_tags_font_color_metadata' => null, 'sending_tags_font_name' => null, 'sending_tags_font_name_metadata' => null, 'sending_tags_font_size' => null, 'sending_tags_font_size_metadata' => null, 'send_to_certified_delivery_enabled' => null, 'send_to_certified_delivery_enabled_metadata' => null, 'session_timeout' => null, 'session_timeout_metadata' => null, 'set_recip_email_lang' => null, 'set_recip_email_lang_metadata' => null, 'set_recip_sign_lang' => null, 'set_recip_sign_lang_metadata' => null, 'shared_template_folders' => null, 'shared_template_folders_metadata' => null, 'show_complete_dialog_in_embedded_session' => null, 'show_complete_dialog_in_embedded_session_metadata' => null, 'show_conditional_routing_on_send' => null, 'show_conditional_routing_on_send_metadata' => null, 'show_initial_conditional_fields' => null, 'show_initial_conditional_fields_metadata' => null, 'show_localized_watermarks' => null, 'show_localized_watermarks_metadata' => null, 'show_masked_fields_when_downloading_document_as_sender' => null, 'show_masked_fields_when_downloading_document_as_sender_metadata' => null, 'show_tutorials' => null, 'show_tutorials_metadata' => null, 'signature_providers' => null, 'signature_providers_metadata' => null, 'sign_date_format' => null, 'sign_date_format_metadata' => null, 'sign_date_time_account_language_override' => null, 'sign_date_time_account_language_override_metadata' => null, 'sign_date_time_account_timezone_override' => null, 'sign_date_time_account_timezone_override_metadata' => null, 'signer_attach_certificate_to_envelope_pdf' => null, 'signer_attach_certificate_to_envelope_pdf_metadata' => null, 'signer_attach_concat' => null, 'signer_attach_concat_metadata' => null, 'signer_can_create_account' => null, 'signer_can_create_account_metadata' => null, 'signer_can_sign_on_mobile' => null, 'signer_can_sign_on_mobile_metadata' => null, 'signer_in_session_use_envelope_complete_email' => null, 'signer_in_session_use_envelope_complete_email_metadata' => null, 'signer_login_requirements' => null, 'signer_login_requirements_metadata' => null, 'signer_must_have_account' => null, 'signer_must_have_account_metadata' => null, 'signer_must_login_to_sign' => null, 'signer_must_login_to_sign_metadata' => null, 'signer_show_secure_field_initial_values' => null, 'signer_show_secure_field_initial_values_metadata' => null, 'signing_session_timeout' => null, 'signing_session_timeout_metadata' => null, 'signing_ui_version' => null, 'signing_ui_version_metadata' => null, 'sign_time_format' => null, 'sign_time_format_metadata' => null, 'sign_time_show_am_pm' => null, 'sign_time_show_am_pm_metadata' => null, 'simplified_sending_enabled' => null, 'simplified_sending_enabled_metadata' => null, 'single_sign_on_enabled' => null, 'single_sign_on_enabled_metadata' => null, 'skip_auth_completed_envelopes' => null, 'skip_auth_completed_envelopes_metadata' => null, 'social_id_recip_auth' => null, 'social_id_recip_auth_metadata' => null, 'specify_document_visibility' => null, 'specify_document_visibility_metadata' => null, 'start_in_advanced_correct' => null, 'start_in_advanced_correct_metadata' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'suppress_certificate_enforcement' => null, 'suppress_certificate_enforcement_metadata' => null, 'tab_account_settings' => null, 'timezone_offset_api' => null, 'timezone_offset_api_metadata' => null, 'timezone_offset_ui' => null, 'timezone_offset_ui_metadata' => null, 'universal_signature_opt_in' => null, 'use_account_level_email' => null, 'use_account_level_email_metadata' => null, 'use_consumer_disclosure' => null, 'use_consumer_disclosure_metadata' => null, 'use_consumer_disclosure_within_account' => null, 'use_consumer_disclosure_within_account_metadata' => null, 'use_derived_keys' => null, 'use_derived_keys_metadata' => null, 'use_docu_sign_express_signer_certificate' => null, 'use_docu_sign_express_signer_certificate_metadata' => null, 'use_multi_app_groups_data' => null, 'use_multi_app_groups_data_metadata' => null, 'use_new_blob_for_pdf' => null, 'use_new_blob_for_pdf_metadata' => null, 'use_safe_signer_certificates' => null, 'use_safe_signer_certificates_metadata' => null, 'uses_api' => null, 'uses_api_metadata' => null, 'use_signature_provider_platform' => null, 'use_signature_provider_platform_metadata' => null, 'validations_allowed' => null, 'validations_allowed_metadata' => null, 'validations_brand' => null, 'validations_brand_metadata' => null, 'validations_cadence' => null, 'validations_cadence_metadata' => null, 'validations_enabled' => null, 'validations_enabled_metadata' => null, 'validations_report' => null, 'validations_report_metadata' => null, 'water_mark_enabled' => null, 'water_mark_enabled_metadata' => null, 'write_reminder_to_envelope_history' => null, 'write_reminder_to_envelope_history_metadata' => null, 'wurfl_min_allowable_screen_size' => null, 'wurfl_min_allowable_screen_size_metadata' => null]) * @method Models\AccountSharedAccess accountSharedAccess(array $props = ['account_id' => null, 'end_position' => null, 'error_details' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'shared_access' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\AccountSignature accountSignature(array $props = ['adopted_date_time' => null, 'created_date_time' => null, 'custom_field' => null, 'date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'error_details' => null, 'external_id' => null, 'image_base64' => null, 'image_type' => null, 'initials150_image_id' => null, 'initials_image_uri' => null, 'is_default' => null, 'last_modified_date_time' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'nrds_status' => null, 'phonetic_name' => null, 'signature150_image_id' => null, 'signature_font' => null, 'signature_groups' => null, 'signature_id' => null, 'signature_image_uri' => null, 'signature_initials' => null, 'signature_name' => null, 'signature_rights' => null, 'signature_type' => null, 'signature_users' => null, 'stamp_format' => null, 'stamp_image_uri' => null, 'stamp_size_mm' => null, 'stamp_type' => null, 'status' => null]) - * @method Models\AccountSignatureDefinition accountSignatureDefinition(array $props = ['date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'external_id' => null, 'image_type' => null, 'is_default' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'phonetic_name' => null, 'signature_font' => null, 'signature_groups' => null, 'signature_id' => null, 'signature_initials' => null, 'signature_name' => null, 'signature_users' => null, 'stamp_format' => null, 'stamp_size_mm' => null]) + * @method Models\AccountSignatureDefinition accountSignatureDefinition(array $props = ['date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'external_id' => null, 'image_type' => null, 'is_default' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'phonetic_name' => null, 'signature_font' => null, 'signature_groups' => null, 'signature_id' => null, 'signature_initials' => null, 'signature_name' => null, 'signature_type' => null, 'signature_users' => null, 'stamp_format' => null, 'stamp_size_mm' => null]) * @method Models\AccountSignatureProvider accountSignatureProvider(array $props = ['is_required' => null, 'priority' => null, 'signature_provider_display_name' => null, 'signature_provider_id' => null, 'signature_provider_name' => null, 'signature_provider_options_metadata' => null, 'signature_provider_required_options' => null]) * @method Models\AccountSignatureProviderOption accountSignatureProviderOption(array $props = ['signature_provider_option_display_name' => null, 'signature_provider_option_id' => null, 'signature_provider_option_name' => null]) * @method Models\AccountSignatureProviders accountSignatureProviders(array $props = ['signature_providers' => null]) * @method Models\AccountSignaturesInformation accountSignaturesInformation(array $props = ['account_signatures' => null]) - * @method Models\AccountUISettings accountUISettings(array $props = ['admin_message' => null, 'ask_an_admin' => null, 'enable_admin_message' => null, 'enable_admin_message_metadata' => null, 'enable_easy_sign_can_use_multi_template_apply' => null, 'enable_easy_sign_can_use_multi_template_apply_metadata' => null, 'enable_easy_sign_template_upload' => null, 'enable_easy_sign_template_upload_metadata' => null, 'enable_envelope_copy_with_data' => null, 'enable_envelope_copy_with_data_metadata' => null, 'hide_send_an_envelope' => null, 'hide_send_an_envelope_metadata' => null, 'hide_use_a_template' => null, 'hide_use_a_template_in_prepare' => null, 'hide_use_a_template_in_prepare_metadata' => null, 'hide_use_a_template_metadata' => null, 'order_based_recipient_id_generation' => null, 'order_based_recipient_id_generation_metadata' => null, 'remove_envelope_forwarding' => null, 'remove_envelope_forwarding_metadata' => null, 'should_redact_access_code' => null, 'should_redact_access_code_metadata' => null, 'upload_new_image_to_sign_or_initial' => null, 'upload_new_image_to_sign_or_initial_metadata' => null]) + * @method Models\AccountUISettings accountUISettings(array $props = ['admin_message' => null, 'ask_an_admin' => null, 'enable_admin_message' => null, 'enable_admin_message_metadata' => null, 'enable_easy_sign_can_use_multi_template_apply' => null, 'enable_easy_sign_can_use_multi_template_apply_metadata' => null, 'enable_easy_sign_template_upload' => null, 'enable_easy_sign_template_upload_metadata' => null, 'enable_envelope_copy_with_data' => null, 'enable_envelope_copy_with_data_metadata' => null, 'enable_legacy_homepage_link' => null, 'enable_legacy_homepage_link_metadata' => null, 'has_external_linked_accounts' => null, 'has_external_linked_accounts_metadata' => null, 'hide_send_an_envelope' => null, 'hide_send_an_envelope_metadata' => null, 'hide_use_a_template' => null, 'hide_use_a_template_in_prepare' => null, 'hide_use_a_template_in_prepare_metadata' => null, 'hide_use_a_template_metadata' => null, 'order_based_recipient_id_generation' => null, 'order_based_recipient_id_generation_metadata' => null, 'remove_envelope_forwarding' => null, 'remove_envelope_forwarding_metadata' => null, 'should_redact_access_code' => null, 'should_redact_access_code_metadata' => null, 'upload_new_image_to_sign_or_initial' => null, 'upload_new_image_to_sign_or_initial_metadata' => null]) * @method Models\AddOn addOn(array $props = ['active' => null, 'add_on_id' => null, 'id' => null, 'name' => null]) * @method Models\AddressInformation addressInformation(array $props = ['address1' => null, 'address2' => null, 'city' => null, 'country' => null, 'fax' => null, 'phone' => null, 'postal_code' => null, 'state_or_province' => null, 'zip_plus4' => null]) * @method Models\AddressInformationInput addressInformationInput(array $props = ['address_information' => null, 'display_level_code' => null, 'receive_in_response' => null]) * @method Models\AddressInformationV2 addressInformationV2(array $props = ['address1' => null, 'address2' => null, 'city' => null, 'country' => null, 'fax' => null, 'phone' => null, 'postal_code' => null, 'state_or_province' => null]) * @method Models\AdminMessage adminMessage(array $props = ['base_message' => null, 'more_information' => null]) - * @method Models\Agent agent(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\Agent agent(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'phone_number' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) * @method Models\ApiRequestLog apiRequestLog(array $props = ['created_date_time' => null, 'description' => null, 'request_log_id' => null, 'status' => null]) * @method Models\ApiRequestLogsResult apiRequestLogsResult(array $props = ['api_request_logs' => null]) * @method Models\AppStoreProduct appStoreProduct(array $props = ['market_place' => null, 'product_id' => null]) - * @method Models\AppStoreReceipt appStoreReceipt(array $props = ['product_id' => null, 'receipt_data' => null]) - * @method Models\Approve approve(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\AppStoreReceipt appStoreReceipt(array $props = ['downgrade_product_id' => null, 'is_downgrade_cancellation' => null, 'product_id' => null, 'receipt_data' => null]) + * @method Models\Approve approve(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\AskAnAdmin askAnAdmin(array $props = ['email' => null, 'message' => null, 'name' => null, 'phone' => null]) * @method Models\Attachment attachment(array $props = ['access_control' => null, 'attachment_id' => null, 'attachment_type' => null, 'data' => null, 'label' => null, 'name' => null, 'remote_url' => null]) * @method Models\AuthenticationMethod authenticationMethod(array $props = ['authentication_type' => null, 'last_provider' => null, 'last_timestamp' => null, 'total_count' => null]) @@ -120,7 +121,8 @@ * @method Models\BulkRecipientsResponse bulkRecipientsResponse(array $props = ['bulk_recipients' => null, 'end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\BulkRecipientsSummaryResponse bulkRecipientsSummaryResponse(array $props = ['bulk_recipients' => null, 'bulk_recipients_count' => null, 'bulk_recipients_uri' => null, 'error_details' => null]) * @method Models\BulkRecipientsUpdateResponse bulkRecipientsUpdateResponse(array $props = ['signer' => null]) - * @method Models\BulkSendBatchStatus bulkSendBatchStatus(array $props = ['batch_id' => null, 'batch_name' => null, 'batch_size' => null, 'bulk_errors' => null, 'envelope_id_or_template_id' => null, 'envelopes_uri' => null, 'failed' => null, 'mailing_list_id' => null, 'queued' => null, 'sent' => null, 'submitted_date' => null]) + * @method Models\BulkSendBatchRequest bulkSendBatchRequest(array $props = ['batch_name' => null]) + * @method Models\BulkSendBatchStatus bulkSendBatchStatus(array $props = ['batch_id' => null, 'batch_name' => null, 'batch_size' => null, 'bulk_errors' => null, 'envelope_id_or_template_id' => null, 'envelopes_uri' => null, 'failed' => null, 'mailing_list_id' => null, 'mailing_list_name' => null, 'owner_user_id' => null, 'queued' => null, 'sender_user_id' => null, 'sent' => null, 'submitted_date' => null]) * @method Models\BulkSendBatchSummaries bulkSendBatchSummaries(array $props = ['batch_size_limit' => null, 'bulk_batch_summaries' => null, 'end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'queue_limit' => null, 'result_set_size' => null, 'start_position' => null, 'total_queued' => null, 'total_set_size' => null]) * @method Models\BulkSendBatchSummary bulkSendBatchSummary(array $props = ['batch_id' => null, 'batch_name' => null, 'batch_size' => null, 'batch_uri' => null, 'failed' => null, 'queued' => null, 'sent' => null, 'submitted_date' => null]) * @method Models\BulkSendErrorStatus bulkSendErrorStatus(array $props = ['created' => null, 'error_message' => null, 'recipient_emails' => null]) @@ -129,16 +131,16 @@ * @method Models\BulkSendTestResponse bulkSendTestResponse(array $props = ['can_be_sent' => null, 'validation_error_details' => null, 'validation_errors' => null]) * @method Models\BulkSendingCopy bulkSendingCopy(array $props = ['custom_fields' => null, 'email_blurb' => null, 'email_subject' => null, 'recipients' => null]) * @method Models\BulkSendingCopyCustomField bulkSendingCopyCustomField(array $props = ['name' => null, 'value' => null]) - * @method Models\BulkSendingCopyRecipient bulkSendingCopyRecipient(array $props = ['access_code' => null, 'client_user_id' => null, 'custom_fields' => null, 'delivery_method' => null, 'email' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'fax_number' => null, 'id_check_configuration_name' => null, 'id_check_information_input' => null, 'identification_method' => null, 'name' => null, 'note' => null, 'phone_authentication' => null, 'recipient_id' => null, 'recipient_signature_providers' => null, 'role_name' => null, 'sms_authentication' => null, 'social_authentications' => null, 'tabs' => null]) + * @method Models\BulkSendingCopyRecipient bulkSendingCopyRecipient(array $props = ['access_code' => null, 'client_user_id' => null, 'custom_fields' => null, 'delivery_method' => null, 'email' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'fax_number' => null, 'host_email' => null, 'host_name' => null, 'id_check_configuration_name' => null, 'id_check_information_input' => null, 'identification_method' => null, 'name' => null, 'note' => null, 'phone_authentication' => null, 'recipient_id' => null, 'recipient_signature_providers' => null, 'role_name' => null, 'signer_name' => null, 'signing_group_id' => null, 'sms_authentication' => null, 'social_authentications' => null, 'tabs' => null]) * @method Models\BulkSendingCopyTab bulkSendingCopyTab(array $props = ['initial_value' => null, 'tab_label' => null]) * @method Models\BulkSendingList bulkSendingList(array $props = ['bulk_copies' => null, 'list_id' => null, 'name' => null]) * @method Models\BulkSendingListSummaries bulkSendingListSummaries(array $props = ['bulk_list_summaries' => null]) * @method Models\BulkSendingListSummary bulkSendingListSummary(array $props = ['bulk_send_list_id' => null, 'created_by_user' => null, 'created_date' => null, 'name' => null]) * @method Models\CaptiveRecipient captiveRecipient(array $props = ['client_user_id' => null, 'email' => null, 'error_details' => null, 'user_name' => null]) * @method Models\CaptiveRecipientInformation captiveRecipientInformation(array $props = ['captive_recipients' => null]) - * @method Models\CarbonCopy carbonCopy(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) - * @method Models\CertifiedDelivery certifiedDelivery(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) - * @method Models\Checkbox checkbox(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'selected' => null, 'selected_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CarbonCopy carbonCopy(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'linked_account_configuration_id' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'phone_number' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\CertifiedDelivery certifiedDelivery(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'phone_number' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\Checkbox checkbox(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'selected' => null, 'selected_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\ChunkedUploadPart chunkedUploadPart(array $props = ['sequence' => null, 'size' => null]) * @method Models\ChunkedUploadRequest chunkedUploadRequest(array $props = ['chunked_upload_id' => null, 'data' => null]) * @method Models\ChunkedUploadResponse chunkedUploadResponse(array $props = ['checksum' => null, 'chunked_upload_id' => null, 'chunked_upload_parts' => null, 'chunked_upload_uri' => null, 'committed' => null, 'expiration_date_time' => null, 'max_chunked_upload_parts' => null, 'max_total_size' => null, 'total_size' => null]) @@ -147,22 +149,23 @@ * @method Models\Comment comment(array $props = ['envelope_id' => null, 'hmac' => null, 'id' => null, 'mentions' => null, 'read' => null, 'sent_by_email' => null, 'sent_by_full_name' => null, 'sent_by_image_id' => null, 'sent_by_initials' => null, 'sent_by_recipient_id' => null, 'sent_by_user_id' => null, 'signing_group_id' => null, 'signing_group_name' => null, 'subject' => null, 'tab_id' => null, 'text' => null, 'thread_id' => null, 'thread_originator_id' => null, 'timestamp' => null, 'time_stamp_formatted' => null, 'visible_to' => null]) * @method Models\CommentHistoryResult commentHistoryResult(array $props = ['comments' => null, 'count' => null, 'end_timetoken' => null, 'start_timetoken' => null]) * @method Models\CommentPublish commentPublish(array $props = ['id' => null, 'mentions' => null, 'text' => null, 'thread_anchor_keys' => null, 'thread_id' => null, 'visible_to' => null]) - * @method Models\CommentThread commentThread(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'comments' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'thread_id' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CommentThread commentThread(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'comments' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'thread_id' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\CommentsPublish commentsPublish(array $props = ['comments_to_publish' => null]) - * @method Models\CommissionCounty commissionCounty(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\CommissionExpiration commissionExpiration(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\CommissionNumber commissionNumber(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\CommissionState commissionState(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\Company company(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CommissionCounty commissionCounty(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CommissionExpiration commissionExpiration(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CommissionNumber commissionNumber(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\CommissionState commissionState(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Company company(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\CompleteSignHashResponse completeSignHashResponse(array $props = ['documents' => null, 'redirection_url' => null, 'remaining_signature_requests' => null]) * @method Models\CompleteSignRequest completeSignRequest(array $props = ['certificate' => null, 'correlation_id' => null, 'document_update_infos' => null, 'max_signature_length' => null, 'signing_location' => null, 'transaction_id' => null]) * @method Models\CompositeTemplate compositeTemplate(array $props = ['composite_template_id' => null, 'document' => null, 'inline_templates' => null, 'pdf_meta_data_template_sequence' => null, 'server_templates' => null]) * @method Models\ConditionalRecipientRule conditionalRecipientRule(array $props = ['conditions' => null, 'order' => null, 'recipient_group' => null, 'recipient_id' => null]) * @method Models\ConditionalRecipientRuleCondition conditionalRecipientRuleCondition(array $props = ['filters' => null, 'order' => null, 'recipient_label' => null]) - * @method Models\ConditionalRecipientRuleFilter conditionalRecipientRuleFilter(array $props = ['operator' => null, 'recipient_id' => null, 'scope' => null, 'tab_id' => null, 'tab_label' => null, 'value' => null]) + * @method Models\ConditionalRecipientRuleFilter conditionalRecipientRuleFilter(array $props = ['operator' => null, 'recipient_id' => null, 'scope' => null, 'tab_id' => null, 'tab_label' => null, 'tab_type' => null, 'value' => null]) * @method Models\ConnectConfigResults connectConfigResults(array $props = ['configurations' => null, 'total_records' => null]) - * @method Models\ConnectCustomConfiguration connectCustomConfiguration(array $props = ['allow_envelope_publish' => null, 'allow_salesforce_publish' => null, 'all_users' => null, 'configuration_type' => null, 'connect_id' => null, 'enable_log' => null, 'envelope_events' => null, 'event_data' => null, 'external_folder_id' => null, 'external_folder_label' => null, 'include_certificate_of_completion' => null, 'include_cert_soap_header' => null, 'include_document_fields' => null, 'include_documents' => null, 'include_envelope_void_reason' => null, 'include_hmac' => null, 'include_sender_accountas_custom_field' => null, 'include_time_zone_information' => null, 'name' => null, 'password' => null, 'recipient_events' => null, 'require_mutual_tls' => null, 'requires_acknowledgement' => null, 'salesforce_api_version' => null, 'salesforce_authcode' => null, 'salesforce_call_back_url' => null, 'salesforce_documents_as_content_files' => null, 'sender_override' => null, 'sender_selectable_items' => null, 'sf_objects' => null, 'sign_message_with_x509_certificate' => null, 'soap_namespace' => null, 'url_to_publish_to' => null, 'user_ids' => null, 'user_name' => null, 'use_soap_interface' => null]) + * @method Models\ConnectCustomConfiguration connectCustomConfiguration(array $props = ['allow_envelope_publish' => null, 'allow_salesforce_publish' => null, 'all_users' => null, 'configuration_type' => null, 'connect_id' => null, 'delivery_mode' => null, 'enable_log' => null, 'envelope_events' => null, 'event_data' => null, 'external_folder_id' => null, 'external_folder_label' => null, 'include_certificate_of_completion' => null, 'include_cert_soap_header' => null, 'include_document_fields' => null, 'include_documents' => null, 'include_envelope_void_reason' => null, 'include_hmac' => null, 'include_sender_accountas_custom_field' => null, 'include_time_zone_information' => null, 'name' => null, 'password' => null, 'recipient_events' => null, 'require_mutual_tls' => null, 'requires_acknowledgement' => null, 'salesforce_api_version' => null, 'salesforce_authcode' => null, 'salesforce_call_back_url' => null, 'salesforce_documents_as_content_files' => null, 'sender_override' => null, 'sender_selectable_items' => null, 'sf_objects' => null, 'sign_message_with_x509_certificate' => null, 'soap_namespace' => null, 'url_to_publish_to' => null, 'user_ids' => null, 'user_name' => null, 'use_soap_interface' => null]) * @method Models\ConnectDebugLog connectDebugLog(array $props = ['connect_config' => null, 'error_details' => null, 'event_date_time' => null, 'event_description' => null, 'payload' => null]) + * @method Models\ConnectDeleteFailureResult connectDeleteFailureResult(array $props = []) * @method Models\ConnectEventData connectEventData(array $props = ['format' => null, 'include_data' => null, 'version' => null]) * @method Models\ConnectFailureFilter connectFailureFilter(array $props = ['envelope_ids' => null, 'synchronous' => null]) * @method Models\ConnectFailureResult connectFailureResult(array $props = ['config_id' => null, 'config_url' => null, 'envelope_id' => null, 'status' => null, 'status_message' => null]) @@ -171,6 +174,7 @@ * @method Models\ConnectLogs connectLogs(array $props = ['failures' => null, 'logs' => null, 'total_records' => null, 'type' => null]) * @method Models\ConnectSalesforceField connectSalesforceField(array $props = ['ds_attribute' => null, 'ds_link' => null, 'ds_node' => null, 'id' => null, 'sf_field' => null, 'sf_field_name' => null, 'sf_folder' => null, 'sf_locked_value' => null]) * @method Models\ConnectSalesforceObject connectSalesforceObject(array $props = ['active' => null, 'description' => null, 'id' => null, 'insert' => null, 'on_complete_only' => null, 'select_fields' => null, 'sf_object' => null, 'sf_object_name' => null, 'update_fields' => null]) + * @method Models\ConnectUserInfo connectUserInfo(array $props = ['email' => null, 'is_included' => null, 'is_part_of_domain' => null, 'user_id' => null, 'user_name' => null]) * @method Models\ConnectUserObject connectUserObject(array $props = ['configurationtype' => null, 'connect_id' => null, 'enabled' => null, 'has_access' => null, 'sender_searchable_items' => null]) * @method Models\ConsoleViewRequest consoleViewRequest(array $props = ['envelope_id' => null, 'return_url' => null]) * @method Models\ConsumerDisclosure consumerDisclosure(array $props = ['account_esign_id' => null, 'allow_cd_withdraw' => null, 'allow_cd_withdraw_metadata' => null, 'change_email' => null, 'change_email_other' => null, 'company_name' => null, 'company_phone' => null, 'copy_cost_per_page' => null, 'copy_fee_collection_method' => null, 'copy_request_email' => null, 'custom' => null, 'enable_esign' => null, 'esign_agreement' => null, 'esign_text' => null, 'language_code' => null, 'must_agree_to_esign' => null, 'pdf_id' => null, 'use_brand' => null, 'use_consumer_disclosure_within_account' => null, 'use_consumer_disclosure_within_account_metadata' => null, 'withdraw_address_line1' => null, 'withdraw_address_line2' => null, 'withdraw_by_email' => null, 'withdraw_by_mail' => null, 'withdraw_by_phone' => null, 'withdraw_city' => null, 'withdraw_consequences' => null, 'withdraw_email' => null, 'withdraw_other' => null, 'withdraw_phone' => null, 'withdraw_postal_code' => null, 'withdraw_state' => null]) @@ -182,8 +186,9 @@ * @method Models\CorrectViewRequest correctViewRequest(array $props = ['return_url' => null, 'suppress_navigation' => null, 'view_url' => null]) * @method Models\Country country(array $props = ['iso_code' => null, 'name' => null, 'provinces' => null, 'province_validated' => null]) * @method Models\Credential credential(array $props = ['access_code' => null, 'type' => null, 'value' => null]) - * @method Models\CreditCardInformation creditCardInformation(array $props = ['address' => null, 'card_number' => null, 'card_type' => null, 'cv_number' => null, 'expiration_month' => null, 'expiration_year' => null, 'name_on_card' => null]) + * @method Models\CreditCardInformation creditCardInformation(array $props = ['address' => null, 'card_last_digits' => null, 'card_number' => null, 'card_type' => null, 'cv_number' => null, 'expiration_month' => null, 'expiration_year' => null, 'name_on_card' => null, 'tokenized_card' => null]) * @method Models\CreditCardTypes creditCardTypes(array $props = ['card_types' => null]) + * @method Models\Currency currency(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'numerical_value' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\CurrencyFeatureSetPrice currencyFeatureSetPrice(array $props = ['currency_code' => null, 'currency_symbol' => null, 'envelope_fee' => null, 'fixed_fee' => null, 'seat_fee' => null]) * @method Models\CurrencyPlanPrice currencyPlanPrice(array $props = ['currency_code' => null, 'currency_symbol' => null, 'per_seat_price' => null, 'supported_card_types' => null, 'support_incident_fee' => null, 'support_plan_fee' => null]) * @method Models\CustomField customField(array $props = ['custom_field_type' => null, 'error_details' => null, 'field_id' => null, 'list_items' => null, 'name' => null, 'required' => null, 'show' => null, 'value' => null]) @@ -191,22 +196,23 @@ * @method Models\CustomFields customFields(array $props = ['list_custom_fields' => null, 'text_custom_fields' => null]) * @method Models\CustomFieldsEnvelope customFieldsEnvelope(array $props = ['list_custom_fields' => null, 'text_custom_fields' => null]) * @method Models\CustomSettingsInformation customSettingsInformation(array $props = ['custom_settings' => null]) - * @method Models\Date date(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\DateSigned dateSigned(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Date date(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\DateSigned dateSigned(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\DateStampProperties dateStampProperties(array $props = ['date_area_height' => null, 'date_area_width' => null, 'date_area_x' => null, 'date_area_y' => null]) - * @method Models\Decline decline(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'decline_reason' => null, 'decline_reason_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Decline decline(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'decline_reason' => null, 'decline_reason_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\DiagnosticsSettingsInformation diagnosticsSettingsInformation(array $props = ['api_request_logging' => null, 'api_request_log_max_entries' => null, 'api_request_log_remaining_entries' => null]) * @method Models\DirectDebitProcessorInformation directDebitProcessorInformation(array $props = ['bank_branch_code' => null, 'bank_check_digit' => null, 'bank_code' => null, 'bank_name' => null, 'bank_transfer_account_name' => null, 'bank_transfer_account_number' => null, 'bank_transfer_type' => null, 'country' => null, 'email' => null, 'first_name' => null, 'i_ban' => null, 'last_name' => null]) + * @method Models\DisplayApplianceAccount displayApplianceAccount(array $props = ['account_id' => null, 'opt_out_auto_nav_text_and_tab_color_updates' => null, 'show_initial_conditional_fields' => null, 'signing_version' => null, 'tag_has_sig_block' => null]) * @method Models\DisplayApplianceDocument displayApplianceDocument(array $props = ['attachment_description' => null, 'document_id' => null, 'document_type' => null, 'envelope_id' => null, 'external_document_id' => null, 'latest_pdf_id' => null, 'name' => null, 'pages' => null]) * @method Models\DisplayApplianceDocumentPage displayApplianceDocumentPage(array $props = ['doc_page_count_total' => null, 'document_id' => null, 'document_name' => null, 'extension' => null, 'height72_dpi' => null, 'is_attachment_type' => null, 'page' => null, 'page_id' => null, 'type' => null, 'width72_dpi' => null]) * @method Models\DisplayApplianceEnvelope displayApplianceEnvelope(array $props = ['add_demo_stamp' => null, 'allow_multiple_attachments' => null, 'burn_default_tab_data' => null, 'convert_pdf_fields' => null, 'envelope_id' => null, 'envelope_type' => null, 'include_sigs_before_complete' => null, 'is_concat_mode' => null, 'is_envelope_id_stamping_enabled' => null, 'pdf_form_conversion_font_scale100' => null, 'should_flatten' => null, 'show_envelope_changes' => null, 'sign_online' => null, 'status' => null, 'user_id' => null]) - * @method Models\DisplayApplianceInfo displayApplianceInfo(array $props = ['document_data' => null, 'document_pages' => null, 'envelope_data' => null, 'page_data' => null, 'recipient_data' => null]) + * @method Models\DisplayApplianceInfo displayApplianceInfo(array $props = []) * @method Models\DisplayAppliancePage displayAppliancePage(array $props = ['document_id' => null, 'document_name' => null, 'external_document_id' => null, 'height' => null, 'is_first_page' => null, 'page_id' => null, 'page_no' => null, 'page_status' => null, 'page_type' => null, 'width' => null]) - * @method Models\DisplayAppliancePdf displayAppliancePdf(array $props = ['attachment_info' => null, 'doc_name' => null, 'document_id' => null, 'latest_pdf' => null, 'latest_pdf_id' => null, 'original_pdf' => null, 'original_pdf_id' => null, 'page_count' => null, 'pdf_type' => null]) + * @method Models\DisplayAppliancePdf displayAppliancePdf(array $props = []) * @method Models\DisplayApplianceRecipient displayApplianceRecipient(array $props = ['cfr_part11' => null, 'company' => null, 'digital_signature_base64' => null, 'email' => null, 'full_name' => null, 'initials_base64' => null, 'in_person_email' => null, 'is_notary' => null, 'notary_seal_base64' => null, 'phone_number' => null, 'recipient_complete_count' => null, 'recipient_guid_id' => null, 'recipient_id' => null, 'recipient_status' => null, 'recipient_type' => null, 'row_state' => null, 'signature_base64' => null, 'signed' => null, 'signer_apply_tabs' => null, 'signer_attachment_base64' => null, 'user_name' => null]) - * @method Models\DisplayApplianceSignerAttachment displayApplianceSignerAttachment(array $props = ['attachment_description' => null, 'attachment_tab_id' => null, 'document_id' => null, 'envelope_id' => null, 'page_count' => null, 'page_id' => null, 'recipient_id' => null]) + * @method Models\DisplayApplianceSignerAttachment displayApplianceSignerAttachment(array $props = []) * @method Models\DobInformationInput dobInformationInput(array $props = ['date_of_birth' => null, 'display_level_code' => null, 'receive_in_response' => null]) - * @method Models\Document document(array $props = ['apply_anchor_tabs' => null, 'display' => null, 'document_base64' => null, 'document_fields' => null, 'document_id' => null, 'encrypted_with_key_manager' => null, 'file_extension' => null, 'file_format_hint' => null, 'html_definition' => null, 'include_in_download' => null, 'match_boxes' => null, 'name' => null, 'order' => null, 'pages' => null, 'password' => null, 'pdf_form_field_option' => null, 'remote_url' => null, 'signer_must_acknowledge' => null, 'signer_must_acknowledge_use_account_default' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'transform_pdf_fields' => null, 'uri' => null]) + * @method Models\Document document(array $props = ['apply_anchor_tabs' => null, 'assign_tabs_to_recipient_id' => null, 'display' => null, 'document_base64' => null, 'document_fields' => null, 'document_id' => null, 'encrypted_with_key_manager' => null, 'file_extension' => null, 'file_format_hint' => null, 'html_definition' => null, 'include_in_download' => null, 'match_boxes' => null, 'name' => null, 'order' => null, 'pages' => null, 'password' => null, 'pdf_form_field_option' => null, 'remote_url' => null, 'signer_must_acknowledge' => null, 'signer_must_acknowledge_use_account_default' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'transform_pdf_fields' => null, 'uri' => null]) * @method Models\DocumentFieldsInformation documentFieldsInformation(array $props = ['document_fields' => null]) * @method Models\DocumentHtmlCollapsibleDisplaySettings documentHtmlCollapsibleDisplaySettings(array $props = ['arrow_closed' => null, 'arrow_color' => null, 'arrow_location' => null, 'arrow_open' => null, 'arrow_size' => null, 'arrow_style' => null, 'container_style' => null, 'label_style' => null, 'only_arrow_is_clickable' => null, 'outer_label_and_arrow_style' => null]) * @method Models\DocumentHtmlDefinition documentHtmlDefinition(array $props = ['display_anchor_prefix' => null, 'display_anchors' => null, 'display_order' => null, 'display_page_number' => null, 'document_guid' => null, 'document_id' => null, 'header_label' => null, 'max_screen_width' => null, 'remove_empty_tags' => null, 'show_mobile_optimized_toggle' => null, 'source' => null]) @@ -222,32 +228,34 @@ * @method Models\DocumentVisibility documentVisibility(array $props = ['document_id' => null, 'error_details' => null, 'recipient_id' => null, 'rights' => null, 'visible' => null]) * @method Models\DocumentVisibilityList documentVisibilityList(array $props = ['document_visibility' => null]) * @method Models\DowngradRequestBillingInfoResponse downgradRequestBillingInfoResponse(array $props = ['downgrade_plan_information' => null, 'payment_method' => null]) - * @method Models\DowngradeBillingPlanInformation downgradeBillingPlanInformation(array $props = ['downgrade_event_type' => null, 'plan_information' => null]) - * @method Models\DowngradePlanUpdateResponse downgradePlanUpdateResponse(array $props = ['account_payment_method' => null, 'downgrade_effective_date' => null, 'downgrade_payment_cycle' => null, 'downgrade_plan_id' => null, 'downgrade_plan_name' => null, 'downgrade_request_status' => null, 'message' => null]) - * @method Models\Draw draw(array $props = ['allow_signer_upload' => null, 'anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'use_background_as_canvas' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\DowngradeBillingPlanInformation downgradeBillingPlanInformation(array $props = ['downgrade_event_type' => null, 'plan_information' => null, 'promo_code' => null, 'sale_discount' => null, 'sale_discount_periods' => null, 'sale_discount_type' => null]) + * @method Models\DowngradePlanUpdateResponse downgradePlanUpdateResponse(array $props = ['account_payment_method' => null, 'discount_applied' => null, 'downgrade_effective_date' => null, 'downgrade_payment_cycle' => null, 'downgrade_plan_id' => null, 'downgrade_plan_name' => null, 'downgrade_request_status' => null, 'message' => null, 'product_id' => null, 'promo_code' => null, 'sale_discount' => null, 'sale_discount_periods' => null, 'sale_discount_type' => null]) + * @method Models\DowngradeRequestInformation downgradeRequestInformation(array $props = ['downgrade_request_creation' => null, 'downgrade_request_product_id' => null, 'downgrade_request_status' => null]) + * @method Models\Draw draw(array $props = ['allow_signer_upload' => null, 'anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'use_background_as_canvas' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\ENoteConfiguration eNoteConfiguration(array $props = ['api_key' => null, 'connect_configured' => null, 'e_note_configured' => null, 'organization' => null, 'password' => null, 'user_name' => null]) - * @method Models\Editor editor(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) - * @method Models\Email email(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\EmailAddress emailAddress(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Editor editor(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'phone_number' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\Email email(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\EmailAddress emailAddress(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\EmailSettings emailSettings(array $props = ['bcc_email_addresses' => null, 'reply_email_address_override' => null, 'reply_email_name_override' => null]) - * @method Models\Envelope envelope(array $props = ['access_control_list_base64' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'copy_recipient_data' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'disable_responsive_document' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified_date_time' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'notification' => null, 'notification_uri' => null, 'power_form' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sender' => null, 'sent_date_time' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'templates_uri' => null, 'transaction_id' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) + * @method Models\Envelope envelope(array $props = ['access_control_list_base64' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'copy_recipient_data' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'disable_responsive_document' => null, 'document_base64' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified_date_time' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'notification' => null, 'notification_uri' => null, 'power_form' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sender' => null, 'sent_date_time' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'templates_uri' => null, 'transaction_id' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) * @method Models\EnvelopeAttachment envelopeAttachment(array $props = ['access_control' => null, 'attachment_id' => null, 'attachment_type' => null, 'error_details' => null, 'label' => null, 'name' => null]) * @method Models\EnvelopeAttachmentsRequest envelopeAttachmentsRequest(array $props = ['attachments' => null]) * @method Models\EnvelopeAttachmentsResult envelopeAttachmentsResult(array $props = ['attachments' => null]) * @method Models\EnvelopeAuditEvent envelopeAuditEvent(array $props = ['event_fields' => null]) * @method Models\EnvelopeAuditEventResponse envelopeAuditEventResponse(array $props = ['audit_events' => null]) - * @method Models\EnvelopeDefinition envelopeDefinition(array $props = ['access_control_list_base64' => null, 'accessibility' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_recipient_recursion' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'composite_templates' => null, 'copy_recipient_data' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'disable_responsive_document' => null, 'documents' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'event_notification' => null, 'event_notifications' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified_date_time' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'notification' => null, 'notification_uri' => null, 'password' => null, 'power_form' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sender' => null, 'sent_date_time' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'template_id' => null, 'template_roles' => null, 'templates_uri' => null, 'transaction_id' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) - * @method Models\EnvelopeDocument envelopeDocument(array $props = ['added_recipient_ids' => null, 'attachment_tab_id' => null, 'authoritative_copy' => null, 'authoritative_copy_metadata' => null, 'available_document_types' => null, 'contains_pdf_form_fields' => null, 'display' => null, 'display_metadata' => null, 'document_fields' => null, 'document_id' => null, 'document_id_guid' => null, 'error_details' => null, 'include_in_download' => null, 'include_in_download_metadata' => null, 'name' => null, 'name_metadata' => null, 'order' => null, 'pages' => null, 'signer_must_acknowledge' => null, 'signer_must_acknowledge_metadata' => null, 'size_bytes' => null, 'template_locked' => null, 'template_required' => null, 'type' => null, 'uri' => null]) + * @method Models\EnvelopeDefinition envelopeDefinition(array $props = ['access_control_list_base64' => null, 'accessibility' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_recipient_recursion' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'composite_templates' => null, 'copy_recipient_data' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'disable_responsive_document' => null, 'document_base64' => null, 'documents' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'event_notification' => null, 'event_notifications' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified_date_time' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'notification' => null, 'notification_uri' => null, 'password' => null, 'power_form' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'recipient_view_request' => null, 'sender' => null, 'sent_date_time' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'template_id' => null, 'template_roles' => null, 'templates_uri' => null, 'transaction_id' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) + * @method Models\EnvelopeDocument envelopeDocument(array $props = ['added_recipient_ids' => null, 'attachment_tab_id' => null, 'authoritative_copy' => null, 'authoritative_copy_metadata' => null, 'available_document_types' => null, 'contains_pdf_form_fields' => null, 'display' => null, 'display_metadata' => null, 'document_base64' => null, 'document_fields' => null, 'document_id' => null, 'document_id_guid' => null, 'error_details' => null, 'include_in_download' => null, 'include_in_download_metadata' => null, 'name' => null, 'name_metadata' => null, 'order' => null, 'pages' => null, 'signer_must_acknowledge' => null, 'signer_must_acknowledge_metadata' => null, 'size_bytes' => null, 'template_locked' => null, 'template_required' => null, 'type' => null, 'uri' => null]) * @method Models\EnvelopeDocumentsResult envelopeDocumentsResult(array $props = ['envelope_documents' => null, 'envelope_id' => null]) * @method Models\EnvelopeEvent envelopeEvent(array $props = ['envelope_event_status_code' => null, 'include_documents' => null]) - * @method Models\EnvelopeFormData envelopeFormData(array $props = ['email_subject' => null, 'envelope_id' => null, 'form_data' => null, 'recipient_form_data' => null, 'sent_date_time' => null, 'status' => null]) - * @method Models\EnvelopeId envelopeId(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\EnvelopeFormData envelopeFormData(array $props = ['email_subject' => null, 'envelope_id' => null, 'form_data' => null, 'prefill_form_data' => null, 'recipient_form_data' => null, 'sent_date_time' => null, 'status' => null]) + * @method Models\EnvelopeFormDataPrefillFormData envelopeFormDataPrefillFormData(array $props = ['form_data' => null]) + * @method Models\EnvelopeId envelopeId(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\EnvelopeIdsRequest envelopeIdsRequest(array $props = ['envelope_ids' => null, 'transaction_ids' => null]) * @method Models\EnvelopeMetadata envelopeMetadata(array $props = ['allow_advanced_correct' => null, 'allow_correct' => null, 'enable_sign_with_notary' => null]) * @method Models\EnvelopeNotificationRequest envelopeNotificationRequest(array $props = ['expirations' => null, 'reminders' => null, 'use_account_defaults' => null]) * @method Models\EnvelopePurgeConfiguration envelopePurgeConfiguration(array $props = ['purge_envelopes' => null, 'redact_pii' => null, 'remove_tabs_and_envelope_attachments' => null, 'retention_days' => null]) - * @method Models\EnvelopeSummary envelopeSummary(array $props = ['bulk_envelope_status' => null, 'envelope_id' => null, 'error_details' => null, 'status' => null, 'status_date_time' => null, 'uri' => null]) - * @method Models\EnvelopeTemplate envelopeTemplate(array $props = ['access_control_list_base64' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_match' => null, 'auto_match_specified_by_user' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'copy_recipient_data' => null, 'created' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'description' => null, 'disable_responsive_document' => null, 'documents' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'favorited_by_me' => null, 'folder_id' => null, 'folder_ids' => null, 'folder_name' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified' => null, 'last_modified_by' => null, 'last_modified_date_time' => null, 'last_used' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'name' => null, 'new_password' => null, 'notification' => null, 'notification_uri' => null, 'owner' => null, 'page_count' => null, 'password' => null, 'password_protected' => null, 'power_form' => null, 'power_forms' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sender' => null, 'sent_date_time' => null, 'shared' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'template_id' => null, 'templates_uri' => null, 'transaction_id' => null, 'uri' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) + * @method Models\EnvelopeSummary envelopeSummary(array $props = ['bulk_envelope_status' => null, 'envelope_id' => null, 'error_details' => null, 'recipient_signing_uri' => null, 'recipient_signing_uri_error' => null, 'status' => null, 'status_date_time' => null, 'uri' => null]) + * @method Models\EnvelopeTemplate envelopeTemplate(array $props = ['access_control_list_base64' => null, 'allow_comments' => null, 'allow_markup' => null, 'allow_reassign' => null, 'allow_view_history' => null, 'any_signer' => null, 'asynchronous' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_match' => null, 'auto_match_specified_by_user' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'copy_recipient_data' => null, 'created' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'description' => null, 'disable_responsive_document' => null, 'document_base64' => null, 'documents' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_attachments' => null, 'envelope_documents' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_location' => null, 'envelope_metadata' => null, 'envelope_uri' => null, 'expire_after' => null, 'expire_date_time' => null, 'expire_enabled' => null, 'external_envelope_id' => null, 'favorited_by_me' => null, 'folder_id' => null, 'folder_ids' => null, 'folder_name' => null, 'folders' => null, 'has_comments' => null, 'has_form_data_changed' => null, 'has_wav_file' => null, 'holder' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_dynamic_envelope' => null, 'is_signature_provider_envelope' => null, 'last_modified' => null, 'last_modified_by' => null, 'last_modified_date_time' => null, 'last_used' => null, 'location' => null, 'lock_information' => null, 'message_lock' => null, 'name' => null, 'new_password' => null, 'notification' => null, 'notification_uri' => null, 'owner' => null, 'page_count' => null, 'password' => null, 'password_protected' => null, 'power_form' => null, 'power_forms' => null, 'purge_completed_date' => null, 'purge_request_date' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sender' => null, 'sent_date_time' => null, 'shared' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'status_date_time' => null, 'template_id' => null, 'templates_uri' => null, 'transaction_id' => null, 'uri' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null, 'workflow' => null]) * @method Models\EnvelopeTemplateDefinition envelopeTemplateDefinition(array $props = ['created' => null, 'description' => null, 'folder_id' => null, 'folder_name' => null, 'folder_uri' => null, 'last_modified' => null, 'last_modified_by' => null, 'name' => null, 'new_password' => null, 'owner' => null, 'page_count' => null, 'parent_folder_uri' => null, 'password' => null, 'shared' => null, 'template_id' => null, 'uri' => null]) * @method Models\EnvelopeTemplateResult envelopeTemplateResult(array $props = ['allow_markup' => null, 'allow_reassign' => null, 'allow_view_history' => null, 'asynchronous' => null, 'attachments_uri' => null, 'authoritative_copy' => null, 'authoritative_copy_default' => null, 'auto_navigation' => null, 'brand_id' => null, 'brand_lock' => null, 'certificate_uri' => null, 'completed_date_time' => null, 'created' => null, 'created_date_time' => null, 'custom_fields' => null, 'custom_fields_uri' => null, 'declined_date_time' => null, 'deleted_date_time' => null, 'delivered_date_time' => null, 'description' => null, 'disable_responsive_document' => null, 'documents' => null, 'documents_combined_uri' => null, 'documents_uri' => null, 'email_blurb' => null, 'email_settings' => null, 'email_subject' => null, 'enable_wet_sign' => null, 'enforce_signer_visibility' => null, 'envelope_id' => null, 'envelope_id_stamping' => null, 'envelope_uri' => null, 'folder_id' => null, 'folder_name' => null, 'folder_uri' => null, 'initial_sent_date_time' => null, 'is21_cfr_part11' => null, 'is_signature_provider_envelope' => null, 'last_modified' => null, 'last_modified_date_time' => null, 'lock_information' => null, 'message_lock' => null, 'name' => null, 'notification' => null, 'notification_uri' => null, 'owner' => null, 'page_count' => null, 'parent_folder_uri' => null, 'password' => null, 'purge_state' => null, 'recipients' => null, 'recipients_lock' => null, 'recipients_uri' => null, 'sent_date_time' => null, 'shared' => null, 'signer_can_sign_on_mobile' => null, 'signing_location' => null, 'status' => null, 'status_changed_date_time' => null, 'template_id' => null, 'templates_uri' => null, 'transaction_id' => null, 'uri' => null, 'use_disclosure' => null, 'voided_date_time' => null, 'voided_reason' => null]) * @method Models\EnvelopeTemplateResults envelopeTemplateResults(array $props = ['end_position' => null, 'envelope_templates' => null, 'folders' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) @@ -258,13 +266,13 @@ * @method Models\EnvelopeUpdateSummary envelopeUpdateSummary(array $props = ['bulk_envelope_status' => null, 'envelope_id' => null, 'error_details' => null, 'list_custom_field_update_results' => null, 'lock_information' => null, 'purge_state' => null, 'recipient_update_results' => null, 'tab_update_results' => null, 'text_custom_field_update_results' => null]) * @method Models\EnvelopesInformation envelopesInformation(array $props = ['continuation_token' => null, 'end_position' => null, 'envelopes' => null, 'envelope_transaction_statuses' => null, 'folders' => null, 'last_queried_date_time' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\ErrorDetails errorDetails(array $props = ['error_code' => null, 'message' => null]) - * @method Models\EventNotification eventNotification(array $props = ['envelope_events' => null, 'event_data' => null, 'include_certificate_of_completion' => null, 'include_certificate_with_soap' => null, 'include_document_fields' => null, 'include_documents' => null, 'include_envelope_void_reason' => null, 'include_hmac' => null, 'include_sender_account_as_custom_field' => null, 'include_time_zone' => null, 'logging_enabled' => null, 'recipient_events' => null, 'require_acknowledgment' => null, 'sign_message_with_x509_cert' => null, 'soap_name_space' => null, 'url' => null, 'use_soap_interface' => null]) + * @method Models\EventNotification eventNotification(array $props = ['delivery_mode' => null, 'envelope_events' => null, 'event_data' => null, 'include_certificate_of_completion' => null, 'include_certificate_with_soap' => null, 'include_document_fields' => null, 'include_documents' => null, 'include_envelope_void_reason' => null, 'include_hmac' => null, 'include_sender_account_as_custom_field' => null, 'include_time_zone' => null, 'logging_enabled' => null, 'recipient_events' => null, 'require_acknowledgment' => null, 'sign_message_with_x509_cert' => null, 'soap_name_space' => null, 'url' => null, 'use_soap_interface' => null]) * @method Models\EventResult eventResult(array $props = ['event_timestamp' => null, 'failure_description' => null, 'status' => null, 'vendor_failure_status_code' => null]) * @method Models\Expirations expirations(array $props = ['expire_after' => null, 'expire_enabled' => null, 'expire_warn' => null]) * @method Models\ExternalClaim externalClaim(array $props = ['acquired_time' => null, 'claim_name' => null, 'provider' => null, 'value' => null]) * @method Models\ExternalDocServiceErrorDetails externalDocServiceErrorDetails(array $props = ['authentication_url' => null, 'error_code' => null, 'message' => null]) * @method Models\ExternalDocumentSources externalDocumentSources(array $props = ['boxnet_enabled' => null, 'boxnet_metadata' => null, 'dropbox_enabled' => null, 'dropbox_metadata' => null, 'google_drive_enabled' => null, 'google_drive_metadata' => null, 'one_drive_enabled' => null, 'one_drive_metadata' => null, 'salesforce_enabled' => null, 'salesforce_metadata' => null]) - * @method Models\ExternalFile externalFile(array $props = ['date' => null, 'id' => null, 'img' => null, 'name' => null, 'size' => null, 'supported' => null, 'type' => null, 'uri' => null]) + * @method Models\ExternalFile externalFile(array $props = ['date' => null, 'has_composite_template' => null, 'id' => null, 'img' => null, 'name' => null, 'owner_name' => null, 'size' => null, 'supported' => null, 'type' => null, 'uri' => null]) * @method Models\ExternalFolder externalFolder(array $props = ['end_position' => null, 'error_details' => null, 'id' => null, 'items' => null, 'name' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\FavoriteTemplatesContentItem favoriteTemplatesContentItem(array $props = ['error_details' => null, 'favorited_date' => null, 'template_id' => null]) * @method Models\FavoriteTemplatesInfo favoriteTemplatesInfo(array $props = ['error_details' => null, 'favorite_templates' => null, 'templates_updated_count' => null]) @@ -273,7 +281,7 @@ * @method Models\FileType fileType(array $props = ['file_extension' => null, 'mime_type' => null]) * @method Models\FileTypeList fileTypeList(array $props = ['file_types' => null]) * @method Models\Filter filter(array $props = ['action_required' => null, 'expires' => null, 'folder_ids' => null, 'from_date_time' => null, 'is_template' => null, 'order' => null, 'order_by' => null, 'search_target' => null, 'search_text' => null, 'status' => null, 'to_date_time' => null]) - * @method Models\FirstName firstName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\FirstName firstName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\Folder folder(array $props = ['error_details' => null, 'filter' => null, 'folder_id' => null, 'folder_items' => null, 'folders' => null, 'has_access' => null, 'has_sub_folders' => null, 'item_count' => null, 'name' => null, 'owner' => null, 'parent_folder_id' => null, 'parent_folder_uri' => null, 'sub_folder_count' => null, 'type' => null, 'uri' => null]) * @method Models\FolderItem folderItem(array $props = ['completed_date_time' => null, 'created_date_time' => null, 'custom_fields' => null, 'description' => null, 'envelope_id' => null, 'envelope_uri' => null, 'is21_cfr_part11' => null, 'is_signature_provider_envelope' => null, 'last_modified' => null, 'name' => null, 'owner_name' => null, 'page_count' => null, 'password' => null, 'sender_email' => null, 'sender_name' => null, 'sent_date_time' => null, 'shared' => null, 'status' => null, 'subject' => null, 'template_id' => null, 'uri' => null]) * @method Models\FolderItemResponse folderItemResponse(array $props = ['end_position' => null, 'folder_items' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_rows' => null]) @@ -283,26 +291,29 @@ * @method Models\FoldersRequest foldersRequest(array $props = ['envelope_ids' => null, 'folders' => null, 'from_folder_id' => null]) * @method Models\FoldersResponse foldersResponse(array $props = ['end_position' => null, 'envelopes' => null, 'folders' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\ForgottenPasswordInformation forgottenPasswordInformation(array $props = ['forgotten_password_answer1' => null, 'forgotten_password_answer2' => null, 'forgotten_password_answer3' => null, 'forgotten_password_answer4' => null, 'forgotten_password_question1' => null, 'forgotten_password_question2' => null, 'forgotten_password_question3' => null, 'forgotten_password_question4' => null]) - * @method Models\FormDataItem formDataItem(array $props = ['error_details' => null, 'list_selected_value' => null, 'name' => null, 'original_value' => null, 'value' => null]) - * @method Models\FormulaTab formulaTab(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'hidden' => null, 'hidden_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'payment_details' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'round_decimal_places' => null, 'round_decimal_places_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\FullName fullName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\FormDataItem formDataItem(array $props = ['error_details' => null, 'list_selected_value' => null, 'name' => null, 'numerical_value' => null, 'original_value' => null, 'value' => null]) + * @method Models\FormulaTab formulaTab(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'hidden' => null, 'hidden_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'payment_details' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'round_decimal_places' => null, 'round_decimal_places_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\FullName fullName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\GraphicsContext graphicsContext(array $props = ['fill_color' => null, 'line_color' => null, 'line_weight' => null]) * @method Models\Group group(array $props = ['error_details' => null, 'group_id' => null, 'group_name' => null, 'group_type' => null, 'permission_profile_id' => null, 'users' => null, 'users_count' => null]) + * @method Models\GroupBrands groupBrands(array $props = ['recipient_brand_id_default' => null, 'sender_brand_id_default' => null, 'brand_options' => null]) * @method Models\GroupInformation groupInformation(array $props = ['end_position' => null, 'groups' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\IdCheckConfiguration idCheckConfiguration(array $props = ['auth_steps' => null, 'is_default' => null, 'name' => null]) * @method Models\IdCheckInformationInput idCheckInformationInput(array $props = ['address_information_input' => null, 'dob_information_input' => null, 'ssn4_information_input' => null, 'ssn9_information_input' => null]) * @method Models\IdCheckSecurityStep idCheckSecurityStep(array $props = ['auth_type' => null]) - * @method Models\InPersonSigner inPersonSigner(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'host_email' => null, 'host_email_metadata' => null, 'host_name' => null, 'host_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'in_person_signing_type' => null, 'in_person_signing_type_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_host' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'signer_email' => null, 'signer_email_metadata' => null, 'signer_first_name' => null, 'signer_first_name_metadata' => null, 'signer_last_name' => null, 'signer_last_name_metadata' => null, 'signer_name' => null, 'signer_name_metadata' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) - * @method Models\InitialHere initialHere(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\InPersonSigner inPersonSigner(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'auto_responded_reason' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'host_email' => null, 'host_email_metadata' => null, 'host_name' => null, 'host_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'in_person_signing_type' => null, 'in_person_signing_type_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_host' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'signer_email' => null, 'signer_email_metadata' => null, 'signer_first_name' => null, 'signer_first_name_metadata' => null, 'signer_last_name' => null, 'signer_last_name_metadata' => null, 'signer_name' => null, 'signer_name_metadata' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\InitialHere initialHere(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'hand_draw_required' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\InlineTemplate inlineTemplate(array $props = ['custom_fields' => null, 'documents' => null, 'envelope' => null, 'recipients' => null, 'sequence' => null]) + * @method Models\IntegratedConnectUserInfoList integratedConnectUserInfoList(array $props = ['end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null, 'users' => null]) * @method Models\IntegratedUserInfoList integratedUserInfoList(array $props = ['all_users_selected' => null, 'end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null, 'users' => null]) - * @method Models\Intermediary intermediary(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\Intermediary intermediary(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'phone_number' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) * @method Models\Jurisdiction jurisdiction(array $props = ['allow_system_created_seal' => null, 'allow_user_uploaded_seal' => null, 'commission_id_in_seal' => null, 'county' => null, 'county_in_seal' => null, 'enabled' => null, 'jurisdiction_id' => null, 'name' => null, 'notary_public_in_seal' => null, 'state_name_in_seal' => null]) - * @method Models\LastName lastName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\LastName lastName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\LinkedExternalPrimaryAccount linkedExternalPrimaryAccount(array $props = ['account_name' => null, 'configuration_id' => null, 'email' => null, 'link_id' => null, 'status' => null, 'user_id' => null]) * @method Models\ListCustomField listCustomField(array $props = ['configuration_type' => null, 'error_details' => null, 'field_id' => null, 'list_items' => null, 'name' => null, 'required' => null, 'show' => null, 'value' => null]) * @method Models\ListItem listItem(array $props = ['selected' => null, 'selected_metadata' => null, 'text' => null, 'text_metadata' => null, 'value' => null, 'value_metadata' => null]) * @method Models\LocalePolicy localePolicy(array $props = ['address_format' => null, 'address_format_metadata' => null, 'allow_region' => null, 'calendar_type' => null, 'calendar_type_metadata' => null, 'culture_name' => null, 'culture_name_metadata' => null, 'currency_code' => null, 'currency_code_metadata' => null, 'currency_negative_format' => null, 'currency_negative_format_metadata' => null, 'currency_positive_format' => null, 'currency_positive_format_metadata' => null, 'custom_date_format' => null, 'custom_sign_date_format' => null, 'custom_sign_time_format' => null, 'custom_time_format' => null, 'date_format' => null, 'date_format_metadata' => null, 'effective_address_format' => null, 'effective_calendar_type' => null, 'effective_currency_code' => null, 'effective_currency_negative_format' => null, 'effective_currency_positive_format' => null, 'effective_custom_date_format' => null, 'effective_custom_time_format' => null, 'effective_date_format' => null, 'effective_initial_format' => null, 'effective_name_format' => null, 'effective_time_format' => null, 'effective_time_zone' => null, 'initial_format' => null, 'initial_format_metadata' => null, 'name_format' => null, 'name_format_metadata' => null, 'sign_date_format' => null, 'sign_date_format_metadata' => null, 'sign_time_format' => null, 'sign_time_format_metadata' => null, 'time_format' => null, 'time_format_metadata' => null, 'time_zone' => null, 'time_zone_metadata' => null]) - * @method Models\LocalePolicyTab localePolicyTab(array $props = ['address_format' => null, 'calendar_type' => null, 'culture_name' => null, 'currency_negative_format' => null, 'currency_positive_format' => null, 'custom_date_format' => null, 'custom_time_format' => null, 'date_format' => null, 'initial_format' => null, 'name_format' => null, 'time_format' => null, 'time_zone' => null]) + * @method Models\LocalePolicyTab localePolicyTab(array $props = ['address_format' => null, 'calendar_type' => null, 'culture_name' => null, 'currency_code' => null, 'currency_negative_format' => null, 'currency_positive_format' => null, 'custom_date_format' => null, 'custom_time_format' => null, 'date_format' => null, 'initial_format' => null, 'name_format' => null, 'time_format' => null, 'time_zone' => null]) * @method Models\LockInformation lockInformation(array $props = ['error_details' => null, 'lock_duration_in_seconds' => null, 'locked_by_app' => null, 'locked_by_user' => null, 'locked_until_date_time' => null, 'lock_token' => null, 'lock_type' => null, 'use_scratch_pad' => null]) * @method Models\LockRequest lockRequest(array $props = ['lock_duration_in_seconds' => null, 'locked_by_app' => null, 'lock_type' => null, 'template_password' => null, 'use_scratch_pad' => null]) * @method Models\LoginAccount loginAccount(array $props = ['account_id' => null, 'account_id_guid' => null, 'base_url' => null, 'email' => null, 'is_default' => null, 'login_account_settings' => null, 'login_user_settings' => null, 'name' => null, 'site_description' => null, 'user_id' => null, 'user_name' => null]) @@ -313,7 +324,7 @@ * @method Models\MergeField mergeField(array $props = ['allow_sender_to_edit' => null, 'allow_sender_to_edit_metadata' => null, 'configuration_type' => null, 'configuration_type_metadata' => null, 'path' => null, 'path_extended' => null, 'path_extended_metadata' => null, 'path_metadata' => null, 'row' => null, 'row_metadata' => null, 'write_back' => null, 'write_back_metadata' => null]) * @method Models\MobileNotifierConfiguration mobileNotifierConfiguration(array $props = ['device_id' => null, 'error_details' => null, 'platform' => null]) * @method Models\MobileNotifierConfigurationInformation mobileNotifierConfigurationInformation(array $props = ['mobile_notifier_configurations' => null]) - * @method Models\ModelList modelList(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'list_items' => null, 'list_selected_value' => null, 'list_selected_value_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\ModelList modelList(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'list_items' => null, 'list_selected_value' => null, 'list_selected_value_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\Money money(array $props = ['amount_in_base_unit' => null, 'currency' => null, 'display_amount' => null]) * @method Models\NameValue nameValue(array $props = ['error_details' => null, 'name' => null, 'original_value' => null, 'value' => null]) * @method Models\NewAccountDefinition newAccountDefinition(array $props = ['account_name' => null, 'account_settings' => null, 'address_information' => null, 'credit_card_information' => null, 'direct_debit_processor_information' => null, 'distributor_code' => null, 'distributor_password' => null, 'envelope_partition_id' => null, 'initial_user' => null, 'payment_method' => null, 'payment_processor_information' => null, 'plan_information' => null, 'referral_information' => null, 'social_account_information' => null]) @@ -321,24 +332,24 @@ * @method Models\NewUser newUser(array $props = ['api_password' => null, 'created_date_time' => null, 'email' => null, 'error_details' => null, 'membership_id' => null, 'permission_profile_id' => null, 'permission_profile_name' => null, 'uri' => null, 'user_id' => null, 'user_name' => null, 'user_status' => null]) * @method Models\NewUsersDefinition newUsersDefinition(array $props = ['new_users' => null]) * @method Models\NewUsersSummary newUsersSummary(array $props = ['new_users' => null]) - * @method Models\Notarize notarize(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Notarize notarize(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\Notary notary(array $props = ['created_date' => null, 'enabled' => null, 'searchable' => null, 'user_info' => null]) * @method Models\NotaryCertificate notaryCertificate(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\NotaryHost notaryHost(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'host_recipient_id' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\NotaryHost notaryHost(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'host_recipient_id' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) * @method Models\NotaryJournal notaryJournal(array $props = ['created_date' => null, 'document_name' => null, 'jurisdiction' => null, 'notary_journal_id' => null, 'notary_journal_meta_data' => null, 'signer_name' => null]) * @method Models\NotaryJournalCredibleWitness notaryJournalCredibleWitness(array $props = ['address' => null, 'name' => null, 'signature_image' => null]) * @method Models\NotaryJournalList notaryJournalList(array $props = ['end_position' => null, 'next_uri' => null, 'notary_journals' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\NotaryJournalMetaData notaryJournalMetaData(array $props = ['comment' => null, 'credible_witnesses' => null, 'signature_image' => null, 'signer_id_type' => null]) * @method Models\NotaryJurisdiction notaryJurisdiction(array $props = ['commission_expiration' => null, 'commission_id' => null, 'county' => null, 'error_details' => null, 'jurisdiction' => null, 'registered_name' => null, 'seal_type' => null]) * @method Models\NotaryJurisdictionList notaryJurisdictionList(array $props = ['end_position' => null, 'next_uri' => null, 'notary_jurisdictions' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) - * @method Models\NotaryRecipient notaryRecipient(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'notary_signers' => null, 'notary_type' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\NotaryRecipient notaryRecipient(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'auto_responded_reason' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'live_oak_start_url' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'notary_signers' => null, 'notary_type' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'phone_number' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) * @method Models\NotaryResult notaryResult(array $props = ['jurisdictions' => null, 'notary' => null]) - * @method Models\NotarySeal notarySeal(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\Note note(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\NotarySeal notarySeal(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Note note(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\Notification notification(array $props = ['expirations' => null, 'reminders' => null, 'use_account_defaults' => null]) * @method Models\NotificationDefaultSettings notificationDefaultSettings(array $props = ['sender_email_notifications' => null, 'signer_email_notifications' => null]) * @method Models\NotificationDefaults notificationDefaults(array $props = ['api_email_notifications' => null, 'email_notifications' => null]) - * @method Models\Number number(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Number number(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\OauthAccess oauthAccess(array $props = ['access_token' => null, 'data' => null, 'expires_in' => null, 'refresh_token' => null, 'scope' => null, 'token_type' => null]) * @method Models\OcrRequest ocrRequest(array $props = ['ocr_language' => null, 'page_selection' => null, 'set_page_orientation' => null, 'show_frames' => null, 'show_text' => null, 'skip_pages_having_existing_extractable_text' => null]) * @method Models\OfflineAttributes offlineAttributes(array $props = ['account_esign_id' => null, 'device_model' => null, 'device_name' => null, 'gps_latitude' => null, 'gps_longitude' => null, 'offline_signing_hash' => null]) @@ -348,19 +359,20 @@ * @method Models\PageSize pageSize(array $props = ['page_height' => null, 'page_width' => null]) * @method Models\PathExtendedElement pathExtendedElement(array $props = ['name' => null, 'type' => null, 'type_name' => null]) * @method Models\PayPalLegacySettings payPalLegacySettings(array $props = ['currency' => null, 'partner' => null, 'password' => null, 'user_name' => null, 'vendor' => null]) - * @method Models\PaymentDetails paymentDetails(array $props = ['allowed_payment_methods' => null, 'charge_id' => null, 'currency_code' => null, 'currency_code_metadata' => null, 'customer_id' => null, 'custom_metadata' => null, 'custom_metadata_required' => null, 'gateway_account_id' => null, 'gateway_account_id_metadata' => null, 'gateway_display_name' => null, 'gateway_name' => null, 'line_items' => null, 'payment_option' => null, 'payment_source_id' => null, 'status' => null, 'total' => null]) + * @method Models\PaymentDetails paymentDetails(array $props = ['allowed_payment_methods' => null, 'charge_id' => null, 'currency_code' => null, 'currency_code_metadata' => null, 'customer_id' => null, 'custom_metadata' => null, 'custom_metadata_required' => null, 'gateway_account_id' => null, 'gateway_account_id_metadata' => null, 'gateway_display_name' => null, 'gateway_name' => null, 'line_items' => null, 'payment_option' => null, 'payment_source_id' => null, 'signer_values' => null, 'status' => null, 'total' => null]) * @method Models\PaymentGatewayAccount paymentGatewayAccount(array $props = ['allow_custom_metadata' => null, 'config' => null, 'display_name' => null, 'is_enabled' => null, 'is_legacy' => null, 'last_modified' => null, 'payment_gateway' => null, 'payment_gateway_account_id' => null, 'payment_gateway_display_name' => null, 'pay_pal_legacy_settings' => null, 'supported_currencies' => null, 'supported_payment_methods' => null, 'supported_payment_methods_with_options' => null, 'zero_decimal_currencies' => null]) * @method Models\PaymentGatewayAccountSetting paymentGatewayAccountSetting(array $props = ['api_fields' => null, 'authorization_code' => null, 'credential_status' => null, 'merchant_id' => null]) * @method Models\PaymentGatewayAccountsInfo paymentGatewayAccountsInfo(array $props = ['payment_gateway_accounts' => null]) * @method Models\PaymentLineItem paymentLineItem(array $props = ['amount_reference' => null, 'description' => null, 'item_code' => null, 'name' => null]) - * @method Models\PaymentMethodWithOptions paymentMethodWithOptions(array $props = ['supported_options' => null, 'type' => null]) + * @method Models\PaymentMethodWithOptions paymentMethodWithOptions(array $props = ['supported_currencies' => null, 'supported_options' => null, 'type' => null]) * @method Models\PaymentProcessorInformation paymentProcessorInformation(array $props = ['address' => null, 'billing_agreement_id' => null, 'email' => null]) + * @method Models\PaymentSignerValues paymentSignerValues(array $props = ['payment_option' => null]) * @method Models\PermissionProfile permissionProfile(array $props = ['modified_by_username' => null, 'modified_date_time' => null, 'permission_profile_id' => null, 'permission_profile_name' => null, 'settings' => null, 'user_count' => null, 'users' => null]) * @method Models\PermissionProfileInformation permissionProfileInformation(array $props = ['permission_profiles' => null]) - * @method Models\PhoneNumber phoneNumber(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\PhoneNumber phoneNumber(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\PlanInformation planInformation(array $props = ['add_ons' => null, 'currency_code' => null, 'free_trial_days_override' => null, 'plan_feature_sets' => null, 'plan_id' => null, 'recipient_domains' => null]) * @method Models\PolyLine polyLine(array $props = ['x1' => null, 'x2' => null, 'y1' => null, 'y2' => null]) - * @method Models\PolyLineOverlay polyLineOverlay(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'graphics_context' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'overlay_type' => null, 'overlay_type_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'poly_lines' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\PolyLineOverlay polyLineOverlay(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'graphics_context' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'overlay_type' => null, 'overlay_type_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'poly_lines' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\PowerForm powerForm(array $props = ['created_by' => null, 'created_date_time' => null, 'email_body' => null, 'email_subject' => null, 'envelopes' => null, 'error_details' => null, 'instructions' => null, 'is_active' => null, 'last_used' => null, 'limit_use_interval' => null, 'limit_use_interval_enabled' => null, 'limit_use_interval_units' => null, 'max_use_enabled' => null, 'name' => null, 'power_form_id' => null, 'power_form_url' => null, 'recipients' => null, 'sender_name' => null, 'sender_user_id' => null, 'signing_mode' => null, 'template_id' => null, 'template_name' => null, 'times_used' => null, 'uri' => null, 'uses_remaining' => null]) * @method Models\PowerFormFormDataEnvelope powerFormFormDataEnvelope(array $props = ['envelope_id' => null, 'recipients' => null]) * @method Models\PowerFormFormDataRecipient powerFormFormDataRecipient(array $props = ['email' => null, 'form_data' => null, 'name' => null, 'recipient_id' => null]) @@ -369,6 +381,8 @@ * @method Models\PowerFormsFormDataResponse powerFormsFormDataResponse(array $props = ['envelopes' => null]) * @method Models\PowerFormsRequest powerFormsRequest(array $props = ['power_forms' => null]) * @method Models\PowerFormsResponse powerFormsResponse(array $props = ['end_position' => null, 'next_uri' => null, 'power_forms' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null]) + * @method Models\PrefillFormData prefillFormData(array $props = ['form_data' => null, 'sender_email' => null, 'sender_name' => null, 'sender_user_id' => null]) + * @method Models\PrefillTabs prefillTabs(array $props = ['checkbox_tabs' => null, 'radio_group_tabs' => null, 'sender_company_tabs' => null, 'sender_name_tabs' => null, 'tab_groups' => null, 'text_tabs' => null]) * @method Models\ProofServiceResourceToken proofServiceResourceToken(array $props = ['proof_base_uri' => null, 'resource_token' => null]) * @method Models\ProofServiceViewLink proofServiceViewLink(array $props = ['view_link' => null]) * @method Models\PropertyMetadata propertyMetadata(array $props = ['options' => null, 'rights' => null]) @@ -376,7 +390,7 @@ * @method Models\ProvisioningInformation provisioningInformation(array $props = ['default_connection_id' => null, 'default_plan_id' => null, 'distributor_code' => null, 'distributor_password' => null, 'password_rule_text' => null, 'plan_promotion_text' => null, 'purchase_order_or_prom_allowed' => null]) * @method Models\PurchasedEnvelopesInformation purchasedEnvelopesInformation(array $props = ['amount' => null, 'app_name' => null, 'currency_code' => null, 'platform' => null, 'product_id' => null, 'quantity' => null, 'receipt_data' => null, 'store_name' => null, 'transaction_id' => null]) * @method Models\Radio radio(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'required' => null, 'required_metadata' => null, 'selected' => null, 'selected_metadata' => null, 'status' => null, 'status_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\RadioGroup radioGroup(array $props = ['conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'group_name' => null, 'group_name_metadata' => null, 'radios' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tooltip_metadata' => null]) + * @method Models\RadioGroup radioGroup(array $props = ['conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'group_name' => null, 'group_name_metadata' => null, 'radios' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tooltip_metadata' => null]) * @method Models\RecipientAdditionalNotification recipientAdditionalNotification(array $props = ['phone_number' => null, 'secondary_delivery_method' => null, 'secondary_delivery_method_metadata' => null, 'secondary_delivery_status' => null]) * @method Models\RecipientAttachment recipientAttachment(array $props = ['attachment_id' => null, 'attachment_type' => null, 'data' => null, 'label' => null, 'name' => null, 'remote_url' => null]) * @method Models\RecipientDomain recipientDomain(array $props = ['active' => null, 'domain_code' => null, 'domain_name' => null, 'recipient_domain_id' => null]) @@ -385,14 +399,14 @@ * @method Models\RecipientFormData recipientFormData(array $props = ['declined_time' => null, 'delivered_time' => null, 'email' => null, 'form_data' => null, 'name' => null, 'recipient_id' => null, 'sent_time' => null, 'signed_time' => null]) * @method Models\RecipientGroup recipientGroup(array $props = ['group_message' => null, 'group_name' => null, 'recipients' => null]) * @method Models\RecipientIdentityInputOption recipientIdentityInputOption(array $props = ['name' => null, 'phone_number_list' => null, 'value_type' => null]) - * @method Models\RecipientIdentityPhoneNumber recipientIdentityPhoneNumber(array $props = ['country_code' => null, 'extension' => null, 'number' => null]) - * @method Models\RecipientIdentityVerification recipientIdentityVerification(array $props = ['input_options' => null, 'workflow_id' => null]) + * @method Models\RecipientIdentityPhoneNumber recipientIdentityPhoneNumber(array $props = ['country_code' => null, 'country_code_lock' => null, 'country_code_metadata' => null, 'extension' => null, 'extension_metadata' => null, 'number' => null, 'number_metadata' => null]) + * @method Models\RecipientIdentityVerification recipientIdentityVerification(array $props = ['input_options' => null, 'workflow_id' => null, 'workflow_id_metadata' => null]) * @method Models\RecipientNamesResponse recipientNamesResponse(array $props = ['multiple_users' => null, 'recipient_names' => null, 'reserved_recipient_email' => null]) * @method Models\RecipientOption recipientOption(array $props = ['email' => null, 'name' => null, 'recipient_label' => null, 'role_name' => null, 'signing_group_id' => null]) * @method Models\RecipientPhoneAuthentication recipientPhoneAuthentication(array $props = ['recip_may_provide_number' => null, 'recip_may_provide_number_metadata' => null, 'record_voice_print' => null, 'record_voice_print_metadata' => null, 'sender_provided_numbers' => null, 'sender_provided_numbers_metadata' => null, 'validate_recip_provided_number' => null, 'validate_recip_provided_number_metadata' => null]) * @method Models\RecipientPhoneNumber recipientPhoneNumber(array $props = ['country_code' => null, 'country_code_metadata' => null, 'number' => null, 'number_metadata' => null]) - * @method Models\RecipientPreviewRequest recipientPreviewRequest(array $props = ['assertion_id' => null, 'authentication_instant' => null, 'authentication_method' => null, 'ping_frequency' => null, 'ping_url' => null, 'recipient_id' => null, 'return_url' => null, 'security_domain' => null, 'x_frame_options' => null, 'x_frame_options_allow_from_url' => null]) - * @method Models\RecipientProofFile recipientProofFile(array $props = ['is_in_proof_file' => null]) + * @method Models\RecipientPreviewRequest recipientPreviewRequest(array $props = ['assertion_id' => null, 'authentication_instant' => null, 'authentication_method' => null, 'client_ur_ls' => null, 'ping_frequency' => null, 'ping_url' => null, 'recipient_id' => null, 'return_url' => null, 'security_domain' => null, 'x_frame_options' => null, 'x_frame_options_allow_from_url' => null]) + * @method Models\RecipientProofFile recipientProofFile(array $props = ['has_identity_attempts' => null, 'is_in_proof_file' => null]) * @method Models\RecipientRouting recipientRouting(array $props = ['rules' => null]) * @method Models\RecipientRules recipientRules(array $props = ['conditional_recipients' => null]) * @method Models\RecipientSAMLAuthentication recipientSAMLAuthentication(array $props = ['saml_assertion_attributes' => null]) @@ -400,21 +414,22 @@ * @method Models\RecipientSignatureInformation recipientSignatureInformation(array $props = ['font_style' => null, 'signature_initials' => null, 'signature_name' => null]) * @method Models\RecipientSignatureProvider recipientSignatureProvider(array $props = ['seal_documents_with_tabs_only' => null, 'seal_name' => null, 'signature_provider_name' => null, 'signature_provider_name_metadata' => null, 'signature_provider_options' => null]) * @method Models\RecipientSignatureProviderOptions recipientSignatureProviderOptions(array $props = ['cpf_number' => null, 'cpf_number_metadata' => null, 'one_time_password' => null, 'one_time_password_metadata' => null, 'signer_role' => null, 'signer_role_metadata' => null, 'sms' => null, 'sms_metadata' => null]) + * @method Models\RecipientTokenClientURLs recipientTokenClientURLs(array $props = []) * @method Models\RecipientUpdateResponse recipientUpdateResponse(array $props = ['combined' => null, 'error_details' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'tabs' => null]) - * @method Models\RecipientViewRequest recipientViewRequest(array $props = ['assertion_id' => null, 'authentication_instant' => null, 'authentication_method' => null, 'client_user_id' => null, 'email' => null, 'frame_ancestors' => null, 'message_origins' => null, 'ping_frequency' => null, 'ping_url' => null, 'recipient_id' => null, 'return_url' => null, 'security_domain' => null, 'user_id' => null, 'user_name' => null, 'x_frame_options' => null, 'x_frame_options_allow_from_url' => null]) + * @method Models\RecipientViewRequest recipientViewRequest(array $props = ['assertion_id' => null, 'authentication_instant' => null, 'authentication_method' => null, 'client_ur_ls' => null, 'client_user_id' => null, 'email' => null, 'frame_ancestors' => null, 'message_origins' => null, 'ping_frequency' => null, 'ping_url' => null, 'recipient_id' => null, 'return_url' => null, 'security_domain' => null, 'user_id' => null, 'user_name' => null, 'x_frame_options' => null, 'x_frame_options_allow_from_url' => null]) * @method Models\Recipients recipients(array $props = ['agents' => null, 'carbon_copies' => null, 'certified_deliveries' => null, 'current_routing_order' => null, 'editors' => null, 'error_details' => null, 'in_person_signers' => null, 'intermediaries' => null, 'notaries' => null, 'recipient_count' => null, 'seals' => null, 'signers' => null, 'witnesses' => null]) * @method Models\RecipientsUpdateSummary recipientsUpdateSummary(array $props = ['recipient_update_results' => null]) * @method Models\ReferralInformation referralInformation(array $props = ['advertisement_id' => null, 'enable_support' => null, 'external_org_id' => null, 'group_member_id' => null, 'id_type' => null, 'included_seats' => null, 'industry' => null, 'plan_start_month' => null, 'promo_code' => null, 'publisher_id' => null, 'referral_code' => null, 'referrer_name' => null, 'sale_discount_amount' => null, 'sale_discount_fixed_amount' => null, 'sale_discount_percent' => null, 'sale_discount_periods' => null, 'sale_discount_seat_price_override' => null, 'shopper_id' => null]) * @method Models\Reminders reminders(array $props = ['reminder_delay' => null, 'reminder_enabled' => null, 'reminder_frequency' => null]) - * @method Models\ReportInProductCsvRunRequest reportInProductCsvRunRequest(array $props = ['custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'for_download' => null, 'is_dashboard' => null, 'new_line' => null, 'override_timezone_key' => null, 'period_length_filter' => null, 'quote' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_invocation_type' => null, 'report_name' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'separator' => null, 'sort_direction' => null, 'sort_field' => null, 'start_position' => null]) + * @method Models\ReportInProductCsvRunRequest reportInProductCsvRunRequest(array $props = ['authentication_success_filter' => null, 'custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'for_download' => null, 'is_dashboard' => null, 'new_line' => null, 'override_timezone_key' => null, 'period_length_filter' => null, 'quote' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_invocation_type' => null, 'report_name' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'separator' => null, 'sort_direction' => null, 'sort_field' => null, 'start_position' => null, 'verification_status_filter' => null]) * @method Models\ReportInProductField reportInProductField(array $props = ['display_order' => null, 'field_version' => null, 'name' => null, 'selected' => null]) - * @method Models\ReportInProductGet reportInProductGet(array $props = ['custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'display_order' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'last_scheduled_execution_date' => null, 'last_scheduled_execution_success_date' => null, 'max_download_rows' => null, 'max_grid_rows' => null, 'max_scheduled_rows' => null, 'period_length_filter' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_name' => null, 'report_type' => null, 'run_uri' => null, 'save_uri' => null, 'schedule_id' => null, 'sent_by_details' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'sort_field_direction' => null, 'sort_field_name' => null]) + * @method Models\ReportInProductGet reportInProductGet(array $props = ['authentication_success_filter' => null, 'custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'display_order' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'last_scheduled_execution_date' => null, 'last_scheduled_execution_success_date' => null, 'max_download_rows' => null, 'max_grid_rows' => null, 'max_scheduled_rows' => null, 'period_length_filter' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_name' => null, 'report_type' => null, 'run_uri' => null, 'save_uri' => null, 'schedule_id' => null, 'sent_by_details' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'sort_field_direction' => null, 'sort_field_name' => null, 'verification_status_filter' => null]) * @method Models\ReportInProductList reportInProductList(array $props = ['reports' => null]) * @method Models\ReportInProductListItem reportInProductListItem(array $props = ['get_uri' => null, 'last_scheduled_execution_date' => null, 'last_scheduled_execution_success_date' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_name' => null, 'report_type' => null, 'run_uri' => null, 'save_uri' => null, 'schedule_create_date' => null, 'schedule_end_date' => null, 'schedule_id' => null, 'schedule_renew_duration_days' => null]) - * @method Models\ReportInProductRunRequest reportInProductRunRequest(array $props = ['custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'for_download' => null, 'is_dashboard' => null, 'period_length_filter' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_invocation_type' => null, 'report_name' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'sort_direction' => null, 'sort_field' => null, 'start_position' => null]) + * @method Models\ReportInProductRunRequest reportInProductRunRequest(array $props = ['authentication_success_filter' => null, 'custom_field_filter' => null, 'date_range_custom_from_date' => null, 'date_range_custom_to_date' => null, 'date_range_filter' => null, 'envelope_date_type_filter' => null, 'envelope_recipient_name_contains_filter' => null, 'envelope_status_filter' => null, 'envelope_subject_contains_filter' => null, 'fields' => null, 'for_download' => null, 'is_dashboard' => null, 'period_length_filter' => null, 'report_customized_id' => null, 'report_description' => null, 'report_id' => null, 'report_invocation_type' => null, 'report_name' => null, 'sent_by_filter' => null, 'sent_by_ids' => null, 'sort_direction' => null, 'sort_field' => null, 'start_position' => null, 'verification_status_filter' => null]) * @method Models\ReportInProductRunResponse reportInProductRunResponse(array $props = ['end_position' => null, 'exceeded_max_results' => null, 'last_warehouse_refresh_date_time' => null, 'result_set_size' => null, 'rows' => null, 'start_position' => null, 'total_set_size' => null]) * @method Models\ReportInProductRunResponseRow reportInProductRunResponseRow(array $props = ['envelope_id' => null, 'fields' => null]) - * @method Models\ReportInProductRunResponseRowFields reportInProductRunResponseRowFields(array $props = ['access_code_required' => null, 'access_codes_attempted' => null, 'access_codes_failed' => null, 'account_id' => null, 'authentication_category' => null, 'authentication_success' => null, 'authentication_type' => null, 'average_time_to_complete_seconds' => null, 'avg_complete_seconds' => null, 'completed' => null, 'completed_ts' => null, 'created_date' => null, 'custom_field' => null, 'declined_date' => null, 'declined_reason' => null, 'delivered_date' => null, 'envelope_count' => null, 'envelope_creator' => null, 'envelope_id' => null, 'envelope_initial_send_ts' => null, 'envelopes_billed' => null, 'envelopes_completed' => null, 'envelopes_completed_count' => null, 'envelopes_declined' => null, 'envelopes_sent' => null, 'envelopes_sent_count' => null, 'envelopes_voided' => null, 'envelope_voided_reason' => null, 'eod_document_description' => null, 'eod_document_name' => null, 'eod_document_profile_id' => null, 'eod_transaction_id' => null, 'eod_transaction_name' => null, 'event_date' => null, 'expiration_date' => null, 'expired_ts' => null, 'failures' => null, 'failure_vendor_code' => null, 'failure_vendor_reason' => null, 'first_send_ts' => null, 'group_id' => null, 'group_name' => null, 'hours_to_complete_end' => null, 'hours_to_complete_start' => null, 'id_checks_attempted' => null, 'id_checks_failed' => null, 'initial_send_ts' => null, 'ip_address' => null, 'last_activity' => null, 'last_activity_date' => null, 'last_sent_date' => null, 'not_signed' => null, 'number_of_authenticated_recipients' => null, 'number_of_completed_signatures' => null, 'number_of_documents' => null, 'number_of_pages' => null, 'number_of_recipients' => null, 'number_of_sends' => null, 'number_of_signers' => null, 'number_of_total_documents' => null, 'number_of_total_pages' => null, 'number_of_total_signers' => null, 'number_of_unique_senders' => null, 'number_total_recipients' => null, 'period_end' => null, 'period_start' => null, 'phone_calls_attempted' => null, 'phone_calls_failed' => null, 'reason_for_declining' => null, 'reason_for_voiding' => null, 'reassign_reason' => null, 'received' => null, 'recipient' => null, 'recipient_action' => null, 'recipient_company_name' => null, 'recipient_country' => null, 'recipient_email' => null, 'recipient_id' => null, 'recipient_name' => null, 'recipient_template_role_name' => null, 'recipient_title' => null, 'recipient_type' => null, 'recipient_user_id' => null, 'remaining_signatures' => null, 'routing_order' => null, 'sender_account_id' => null, 'sender_company_name' => null, 'sender_country' => null, 'sender_email' => null, 'sender_ip_address' => null, 'sender_job_title' => null, 'sender_name' => null, 'sender_user_id' => null, 'sign_date' => null, 'signed' => null, 'signed_date' => null, 'signed_on_mobile' => null, 'signed_on_paper' => null, 'signer_list' => null, 'status' => null, 'status_changed_date' => null, 'status_changed_ts' => null, 'subject' => null, 'successes' => null, 'templates_created' => null, 'templates_created_count' => null, 'terminal_status_date' => null, 'time_to_complete_seconds' => null, 'time_to_deliver' => null, 'total_documents' => null, 'total_envelopes' => null, 'total_pages' => null, 'total_recipients' => null, 'total_signers' => null, 'unique_senders' => null, 'user_account_email' => null, 'user_account_name' => null, 'user_account_status' => null, 'user_count' => null, 'user_id' => null, 'view_date' => null, 'voided_ts' => null]) + * @method Models\ReportInProductRunResponseRowFields reportInProductRunResponseRowFields(array $props = ['access_code_required' => null, 'access_codes_attempted' => null, 'access_codes_failed' => null, 'account_id' => null, 'authentication_category' => null, 'authentication_success' => null, 'authentication_type' => null, 'average_time_to_complete_seconds' => null, 'avg_complete_seconds' => null, 'capture_method' => null, 'completed' => null, 'completed_ts' => null, 'created_date' => null, 'created_on' => null, 'creator' => null, 'custom_field' => null, 'declined_date' => null, 'declined_reason' => null, 'delivered_date' => null, 'envelope_count' => null, 'envelope_creator' => null, 'envelope_id' => null, 'envelope_initial_send_ts' => null, 'envelopes_billed' => null, 'envelopes_completed' => null, 'envelopes_completed_count' => null, 'envelopes_declined' => null, 'envelopes_sent' => null, 'envelopes_sent_count' => null, 'envelopes_voided' => null, 'envelope_voided_reason' => null, 'eod_document_description' => null, 'eod_document_name' => null, 'eod_document_profile_id' => null, 'eod_transaction_id' => null, 'eod_transaction_name' => null, 'event_date' => null, 'expiration_date' => null, 'expired_ts' => null, 'failure_reason' => null, 'failures' => null, 'failure_vendor_code' => null, 'failure_vendor_reason' => null, 'first_send_ts' => null, 'group_id' => null, 'group_name' => null, 'hours_to_complete_end' => null, 'hours_to_complete_start' => null, 'id_checks_attempted' => null, 'id_checks_failed' => null, 'id_country' => null, 'id_method' => null, 'initial_send_ts' => null, 'ip_address' => null, 'last_activity' => null, 'last_activity_date' => null, 'last_modified' => null, 'last_sent_date' => null, 'last_used' => null, 'metadata_removed' => null, 'not_signed' => null, 'number_of_authenticated_recipients' => null, 'number_of_completed_signatures' => null, 'number_of_documents' => null, 'number_of_pages' => null, 'number_of_recipients' => null, 'number_of_sends' => null, 'number_of_signers' => null, 'number_of_total_documents' => null, 'number_of_total_pages' => null, 'number_of_total_signers' => null, 'number_of_unique_senders' => null, 'number_total_recipients' => null, 'other_recipients_list' => null, 'owner' => null, 'owner_mail' => null, 'period_end' => null, 'period_start' => null, 'phone_calls_attempted' => null, 'phone_calls_failed' => null, 'pii_redacted' => null, 'purge_date' => null, 'reason_for_declining' => null, 'reason_for_voiding' => null, 'reassign_reason' => null, 'received' => null, 'recipient' => null, 'recipient_action' => null, 'recipient_company_name' => null, 'recipient_country' => null, 'recipient_email' => null, 'recipient_id' => null, 'recipient_name' => null, 'recipient_role_name' => null, 'recipient_template_role_name' => null, 'recipient_title' => null, 'recipient_type' => null, 'recipient_user_id' => null, 'remaining_signatures' => null, 'routing_order' => null, 'sender_account_id' => null, 'sender_company_name' => null, 'sender_country' => null, 'sender_email' => null, 'sender_ip_address' => null, 'sender_job_title' => null, 'sender_name' => null, 'sender_user_id' => null, 'signature_type' => null, 'signature_type_value' => null, 'sign_date' => null, 'signed' => null, 'signed_date' => null, 'signed_on_mobile' => null, 'signed_on_paper' => null, 'signer_list' => null, 'status' => null, 'status_changed_date' => null, 'status_changed_ts' => null, 'status_comment' => null, 'subject' => null, 'successes' => null, 'template_id' => null, 'template_name' => null, 'templates_created' => null, 'templates_created_count' => null, 'terminal_status_date' => null, 'time_to_complete_seconds' => null, 'time_to_deliver' => null, 'total_documents' => null, 'total_envelopes' => null, 'total_pages' => null, 'total_recipients' => null, 'total_signers' => null, 'unique_senders' => null, 'user_account_email' => null, 'user_account_name' => null, 'user_account_status' => null, 'user_count' => null, 'user_id' => null, 'verification_status' => null, 'verification_type' => null, 'view_date' => null, 'voided_ts' => null]) * @method Models\ReportInProductSaveResponse reportInProductSaveResponse(array $props = ['report_customized_id' => null]) * @method Models\ReportInProductSentByDetails reportInProductSentByDetails(array $props = ['groups' => null, 'users' => null]) * @method Models\ResourceInformation resourceInformation(array $props = ['resources' => null]) @@ -423,10 +438,12 @@ * @method Models\SamlAssertionAttribute samlAssertionAttribute(array $props = ['error_details' => null, 'name' => null, 'original_value' => null, 'value' => null]) * @method Models\Seal seal(array $props = ['configuration' => null, 'seal_identifier' => null]) * @method Models\SealIdentifier sealIdentifier(array $props = ['seal_display_name' => null, 'seal_name' => null]) - * @method Models\SealSign sealSign(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\SealSign sealSign(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_responded_reason' => null, 'client_user_id' => null, 'completed_count' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'note' => null, 'note_metadata' => null, 'phone_authentication' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signed_date_time' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) * @method Models\SeatDiscount seatDiscount(array $props = ['begin_seat_count' => null, 'discount_percent' => null, 'end_seat_count' => null]) * @method Models\Sender sender(array $props = ['account_id_guid' => null, 'company_name' => null]) + * @method Models\SenderCompany senderCompany(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\SenderEmailNotifications senderEmailNotifications(array $props = ['changed_signer' => null, 'comments_only_private_and_mention' => null, 'comments_receive_all' => null, 'delivery_failed' => null, 'envelope_complete' => null, 'offline_signing_failed' => null, 'powerform_responses_limit_notification_email' => null, 'purge_documents' => null, 'recipient_viewed' => null, 'sender_envelope_declined' => null, 'withdrawn_consent' => null]) + * @method Models\SenderName senderName(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\ServerTemplate serverTemplate(array $props = ['sequence' => null, 'template_id' => null]) * @method Models\ServiceInformation serviceInformation(array $props = ['build_branch' => null, 'build_branch_deployed_date_time' => null, 'build_sha' => null, 'build_version' => null, 'linked_sites' => null, 'service_versions' => null]) * @method Models\ServiceVersion serviceVersion(array $props = ['version' => null, 'version_url' => null]) @@ -434,7 +451,7 @@ * @method Models\SharedItem sharedItem(array $props = ['error_details' => null, 'shared' => null, 'user' => null]) * @method Models\SignHashDocument signHashDocument(array $props = ['data' => null, 'document_id' => null, 'format' => null, 'name' => null, 'remaining_signatures' => null, 'revisions' => null, 'signature_properties' => null, 'signature_type' => null]) * @method Models\SignHashSessionInfoResponse signHashSessionInfoResponse(array $props = ['documents' => null, 'envelope_id' => null, 'language' => null, 'redirection_url' => null, 'remaining_signature_requests' => null, 'seal' => null, 'sender' => null, 'user' => null]) - * @method Models\SignHere signHere(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'is_seal_sign_tab' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'stamp' => null, 'stamp_type' => null, 'stamp_type_metadata' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\SignHere signHere(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'hand_draw_required' => null, 'height' => null, 'height_metadata' => null, 'is_seal_sign_tab' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'stamp' => null, 'stamp_type' => null, 'stamp_type_metadata' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\SignSessionInfoRequest signSessionInfoRequest(array $props = ['certificate' => null, 'max_signature_length' => null, 'return_format' => null, 'signing_location' => null]) * @method Models\SignatureDataInfo signatureDataInfo(array $props = ['document_security_store' => null, 'signature_data' => null, 'signature_field_name' => null]) * @method Models\SignatureGroup signatureGroup(array $props = ['group_id' => null, 'group_name' => null, 'rights' => null]) @@ -444,30 +461,30 @@ * @method Models\SignatureType signatureType(array $props = ['is_default' => null, 'type' => null]) * @method Models\SignatureUser signatureUser(array $props = ['is_default' => null, 'rights' => null, 'user_id' => null, 'user_name' => null]) * @method Models\SignatureUserDef signatureUserDef(array $props = ['is_default' => null, 'rights' => null, 'user_id' => null]) - * @method Models\Signer signer(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) - * @method Models\SignerAttachment signerAttachment(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Signer signer(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'auto_responded_reason' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'phone_number' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null]) + * @method Models\SignerAttachment signerAttachment(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'hand_draw_required' => null, 'height' => null, 'height_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'optional' => null, 'optional_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'scale_value' => null, 'scale_value_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\SignerEmailNotifications signerEmailNotifications(array $props = ['agent_notification' => null, 'carbon_copy_notification' => null, 'certified_delivery_notification' => null, 'comments_only_private_and_mention' => null, 'comments_receive_all' => null, 'document_markup_activation' => null, 'envelope_activation' => null, 'envelope_complete' => null, 'envelope_corrected' => null, 'envelope_declined' => null, 'envelope_voided' => null, 'fax_received' => null, 'offline_signing_failed' => null, 'purge_documents' => null, 'reassigned_signer' => null, 'when_signing_group_member' => null]) * @method Models\SigningGroup signingGroup(array $props = ['created' => null, 'created_by' => null, 'error_details' => null, 'group_email' => null, 'group_name' => null, 'group_type' => null, 'modified' => null, 'modified_by' => null, 'signing_group_id' => null, 'users' => null]) * @method Models\SigningGroupInformation signingGroupInformation(array $props = ['groups' => null]) * @method Models\SigningGroupUser signingGroupUser(array $props = ['email' => null, 'error_details' => null, 'user_name' => null]) * @method Models\SigningGroupUsers signingGroupUsers(array $props = ['users' => null]) * @method Models\SmartContractInformation smartContractInformation(array $props = ['code' => null, 'uri' => null]) - * @method Models\SmartSection smartSection(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'case_sensitive' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'display_settings' => null, 'document_id' => null, 'document_id_metadata' => null, 'end_anchor' => null, 'end_position' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'overlay_type' => null, 'overlay_type_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'remove_end_anchor' => null, 'remove_start_anchor' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'start_anchor' => null, 'start_position' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\SmartSection smartSection(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'case_sensitive' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'display_settings' => null, 'document_id' => null, 'document_id_metadata' => null, 'end_anchor' => null, 'end_position' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'locked' => null, 'locked_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'overlay_type' => null, 'overlay_type_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'remove_end_anchor' => null, 'remove_start_anchor' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'start_anchor' => null, 'start_position' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\SmartSectionAnchorPosition smartSectionAnchorPosition(array $props = ['page_number' => null, 'x_position' => null, 'y_position' => null]) * @method Models\SmartSectionCollapsibleDisplaySettings smartSectionCollapsibleDisplaySettings(array $props = ['arrow_closed' => null, 'arrow_color' => null, 'arrow_location' => null, 'arrow_open' => null, 'arrow_size' => null, 'arrow_style' => null, 'container_style' => null, 'label_style' => null, 'only_arrow_is_clickable' => null, 'outer_label_and_arrow_style' => null]) * @method Models\SmartSectionDisplaySettings smartSectionDisplaySettings(array $props = ['cell_style' => null, 'collapsible_settings' => null, 'display' => null, 'display_label' => null, 'display_order' => null, 'display_page_number' => null, 'hide_label_when_opened' => null, 'inline_outer_style' => null, 'label_when_opened' => null, 'pre_label' => null, 'scroll_to_top_when_opened' => null, 'table_style' => null]) * @method Models\SocialAccountInformation socialAccountInformation(array $props = ['email' => null, 'error_details' => null, 'provider' => null, 'social_id' => null, 'user_name' => null]) * @method Models\SocialAuthentication socialAuthentication(array $props = ['authentication' => null]) - * @method Models\Ssn ssn(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Ssn ssn(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\Ssn4InformationInput ssn4InformationInput(array $props = ['display_level_code' => null, 'receive_in_response' => null, 'ssn4' => null]) * @method Models\Ssn9InformationInput ssn9InformationInput(array $props = ['display_level_code' => null, 'ssn9' => null]) * @method Models\Stamp stamp(array $props = ['adopted_date_time' => null, 'created_date_time' => null, 'custom_field' => null, 'date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'error_details' => null, 'external_id' => null, 'image_base64' => null, 'image_type' => null, 'last_modified_date_time' => null, 'phonetic_name' => null, 'signature_name' => null, 'stamp_format' => null, 'stamp_image_uri' => null, 'stamp_size_mm' => null, 'status' => null]) * @method Models\SupportedLanguages supportedLanguages(array $props = ['languages' => null]) - * @method Models\TabAccountSettings tabAccountSettings(array $props = ['allow_tab_order' => null, 'allow_tab_order_metadata' => null, 'approve_decline_tabs_enabled' => null, 'approve_decline_tabs_metadata' => null, 'calculated_fields_enabled' => null, 'calculated_fields_metadata' => null, 'checkbox_tabs_enabled' => null, 'check_box_tabs_metadata' => null, 'data_field_regex_enabled' => null, 'data_field_regex_metadata' => null, 'data_field_size_enabled' => null, 'data_field_size_metadata' => null, 'draw_tabs_enabled' => null, 'draw_tabs_metadata' => null, 'first_last_email_tabs_enabled' => null, 'first_last_email_tabs_metadata' => null, 'list_tabs_enabled' => null, 'list_tabs_metadata' => null, 'note_tabs_enabled' => null, 'note_tabs_metadata' => null, 'radio_tabs_enabled' => null, 'radio_tabs_metadata' => null, 'saving_custom_tabs_enabled' => null, 'saving_custom_tabs_metadata' => null, 'sender_to_change_tab_assignments_enabled' => null, 'sender_to_change_tab_assignments_metadata' => null, 'shared_custom_tabs_enabled' => null, 'shared_custom_tabs_metadata' => null, 'tab_data_label_enabled' => null, 'tab_data_label_metadata' => null, 'tab_location_enabled' => null, 'tab_location_metadata' => null, 'tab_locking_enabled' => null, 'tab_locking_metadata' => null, 'tab_scale_enabled' => null, 'tab_scale_metadata' => null, 'tab_text_formatting_enabled' => null, 'tab_text_formatting_metadata' => null, 'text_tabs_enabled' => null, 'text_tabs_metadata' => null]) - * @method Models\TabGroup tabGroup(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'group_label' => null, 'group_label_metadata' => null, 'group_rule' => null, 'group_rule_metadata' => null, 'height' => null, 'height_metadata' => null, 'maximum_allowed' => null, 'maximum_allowed_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'minimum_required' => null, 'minimum_required_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_scope' => null, 'tab_scope_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) - * @method Models\TabMetadata tabMetadata(array $props = ['anchor' => null, 'anchor_case_sensitive' => null, 'anchor_horizontal_alignment' => null, 'anchor_ignore_if_not_present' => null, 'anchor_match_whole_word' => null, 'anchor_units' => null, 'anchor_x_offset' => null, 'anchor_y_offset' => null, 'bold' => null, 'collaborative' => null, 'conceal_value_on_document' => null, 'created_by_display_name' => null, 'created_by_user_id' => null, 'custom_tab_id' => null, 'disable_auto_size' => null, 'editable' => null, 'font' => null, 'font_color' => null, 'font_size' => null, 'height' => null, 'included_in_email' => null, 'initial_value' => null, 'italic' => null, 'items' => null, 'last_modified' => null, 'last_modified_by_display_name' => null, 'last_modified_by_user_id' => null, 'locked' => null, 'maximum_length' => null, 'merge_field' => null, 'name' => null, 'payment_item_code' => null, 'payment_item_description' => null, 'payment_item_name' => null, 'require_all' => null, 'required' => null, 'require_initial_on_shared_change' => null, 'scale_value' => null, 'selected' => null, 'shared' => null, 'stamp_type' => null, 'stamp_type_metadata' => null, 'tab_label' => null, 'type' => null, 'underline' => null, 'validation_message' => null, 'validation_pattern' => null, 'width' => null]) + * @method Models\TabAccountSettings tabAccountSettings(array $props = ['allow_tab_order' => null, 'allow_tab_order_metadata' => null, 'approve_decline_tabs_enabled' => null, 'approve_decline_tabs_metadata' => null, 'calculated_fields_enabled' => null, 'calculated_fields_metadata' => null, 'checkbox_tabs_enabled' => null, 'check_box_tabs_metadata' => null, 'data_field_regex_enabled' => null, 'data_field_regex_metadata' => null, 'data_field_size_enabled' => null, 'data_field_size_metadata' => null, 'draw_tabs_enabled' => null, 'draw_tabs_metadata' => null, 'first_last_email_tabs_enabled' => null, 'first_last_email_tabs_metadata' => null, 'list_tabs_enabled' => null, 'list_tabs_metadata' => null, 'note_tabs_enabled' => null, 'note_tabs_metadata' => null, 'prefill_tabs_enabled' => null, 'prefill_tabs_metadata' => null, 'radio_tabs_enabled' => null, 'radio_tabs_metadata' => null, 'saving_custom_tabs_enabled' => null, 'saving_custom_tabs_metadata' => null, 'sender_to_change_tab_assignments_enabled' => null, 'sender_to_change_tab_assignments_metadata' => null, 'shared_custom_tabs_enabled' => null, 'shared_custom_tabs_metadata' => null, 'tab_data_label_enabled' => null, 'tab_data_label_metadata' => null, 'tab_location_enabled' => null, 'tab_location_metadata' => null, 'tab_locking_enabled' => null, 'tab_locking_metadata' => null, 'tab_scale_enabled' => null, 'tab_scale_metadata' => null, 'tab_text_formatting_enabled' => null, 'tab_text_formatting_metadata' => null, 'text_tabs_enabled' => null, 'text_tabs_metadata' => null]) + * @method Models\TabGroup tabGroup(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'group_label' => null, 'group_label_metadata' => null, 'group_rule' => null, 'group_rule_metadata' => null, 'height' => null, 'height_metadata' => null, 'maximum_allowed' => null, 'maximum_allowed_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'minimum_required' => null, 'minimum_required_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_scope' => null, 'tab_scope_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\TabMetadata tabMetadata(array $props = ['anchor' => null, 'anchor_case_sensitive' => null, 'anchor_horizontal_alignment' => null, 'anchor_ignore_if_not_present' => null, 'anchor_match_whole_word' => null, 'anchor_units' => null, 'anchor_x_offset' => null, 'anchor_y_offset' => null, 'bold' => null, 'collaborative' => null, 'conceal_value_on_document' => null, 'created_by_display_name' => null, 'created_by_user_id' => null, 'custom_tab_id' => null, 'disable_auto_size' => null, 'editable' => null, 'font' => null, 'font_color' => null, 'font_size' => null, 'height' => null, 'included_in_email' => null, 'initial_value' => null, 'italic' => null, 'items' => null, 'last_modified' => null, 'last_modified_by_display_name' => null, 'last_modified_by_user_id' => null, 'locale_policy' => null, 'locked' => null, 'maximum_length' => null, 'merge_field' => null, 'name' => null, 'numerical_value' => null, 'payment_item_code' => null, 'payment_item_description' => null, 'payment_item_name' => null, 'require_all' => null, 'required' => null, 'require_initial_on_shared_change' => null, 'scale_value' => null, 'selected' => null, 'shared' => null, 'stamp_type' => null, 'stamp_type_metadata' => null, 'tab_label' => null, 'type' => null, 'underline' => null, 'validation_message' => null, 'validation_pattern' => null, 'width' => null]) * @method Models\TabMetadataList tabMetadataList(array $props = ['tabs' => null]) - * @method Models\Tabs tabs(array $props = ['approve_tabs' => null, 'checkbox_tabs' => null, 'comment_thread_tabs' => null, 'commission_county_tabs' => null, 'commission_expiration_tabs' => null, 'commission_number_tabs' => null, 'commission_state_tabs' => null, 'company_tabs' => null, 'date_signed_tabs' => null, 'date_tabs' => null, 'decline_tabs' => null, 'draw_tabs' => null, 'email_address_tabs' => null, 'email_tabs' => null, 'envelope_id_tabs' => null, 'first_name_tabs' => null, 'formula_tabs' => null, 'full_name_tabs' => null, 'initial_here_tabs' => null, 'last_name_tabs' => null, 'list_tabs' => null, 'notarize_tabs' => null, 'notary_seal_tabs' => null, 'note_tabs' => null, 'number_tabs' => null, 'phone_number_tabs' => null, 'poly_line_overlay_tabs' => null, 'radio_group_tabs' => null, 'signer_attachment_tabs' => null, 'sign_here_tabs' => null, 'smart_section_tabs' => null, 'ssn_tabs' => null, 'tab_groups' => null, 'text_tabs' => null, 'title_tabs' => null, 'view_tabs' => null, 'zip_tabs' => null]) + * @method Models\Tabs tabs(array $props = ['approve_tabs' => null, 'checkbox_tabs' => null, 'comment_thread_tabs' => null, 'commission_county_tabs' => null, 'commission_expiration_tabs' => null, 'commission_number_tabs' => null, 'commission_state_tabs' => null, 'company_tabs' => null, 'currency_tabs' => null, 'date_signed_tabs' => null, 'date_tabs' => null, 'decline_tabs' => null, 'draw_tabs' => null, 'email_address_tabs' => null, 'email_tabs' => null, 'envelope_id_tabs' => null, 'first_name_tabs' => null, 'formula_tabs' => null, 'full_name_tabs' => null, 'initial_here_tabs' => null, 'last_name_tabs' => null, 'list_tabs' => null, 'notarize_tabs' => null, 'notary_seal_tabs' => null, 'note_tabs' => null, 'number_tabs' => null, 'phone_number_tabs' => null, 'poly_line_overlay_tabs' => null, 'prefill_tabs' => null, 'radio_group_tabs' => null, 'signer_attachment_tabs' => null, 'sign_here_tabs' => null, 'smart_section_tabs' => null, 'ssn_tabs' => null, 'tab_groups' => null, 'text_tabs' => null, 'title_tabs' => null, 'view_tabs' => null, 'zip_tabs' => null]) * @method Models\TemplateCustomFields templateCustomFields(array $props = ['list_custom_fields' => null, 'text_custom_fields' => null]) * @method Models\TemplateDocumentVisibilityList templateDocumentVisibilityList(array $props = ['document_visibility' => null]) * @method Models\TemplateDocumentsResult templateDocumentsResult(array $props = ['template_documents' => null, 'template_id' => null]) @@ -475,41 +492,41 @@ * @method Models\TemplateMatch templateMatch(array $props = ['document_end_page' => null, 'document_start_page' => null, 'match_percentage' => null]) * @method Models\TemplateNotificationRequest templateNotificationRequest(array $props = ['expirations' => null, 'password' => null, 'reminders' => null, 'use_account_defaults' => null]) * @method Models\TemplateRecipients templateRecipients(array $props = ['agents' => null, 'carbon_copies' => null, 'certified_deliveries' => null, 'current_routing_order' => null, 'editors' => null, 'error_details' => null, 'in_person_signers' => null, 'intermediaries' => null, 'notaries' => null, 'recipient_count' => null, 'seals' => null, 'signers' => null, 'witnesses' => null]) - * @method Models\TemplateRole templateRole(array $props = ['access_code' => null, 'client_user_id' => null, 'default_recipient' => null, 'email' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'in_person_signer_name' => null, 'name' => null, 'recipient_signature_providers' => null, 'role_name' => null, 'routing_order' => null, 'signing_group_id' => null, 'tabs' => null]) + * @method Models\TemplateRole templateRole(array $props = ['access_code' => null, 'additional_notifications' => null, 'client_user_id' => null, 'default_recipient' => null, 'email' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'in_person_signer_name' => null, 'name' => null, 'phone_number' => null, 'recipient_signature_providers' => null, 'role_name' => null, 'routing_order' => null, 'signing_group_id' => null, 'tabs' => null]) * @method Models\TemplateSharedItem templateSharedItem(array $props = ['error_details' => null, 'owner' => null, 'password' => null, 'shared' => null, 'shared_groups' => null, 'shared_users' => null, 'template_id' => null, 'template_name' => null]) * @method Models\TemplateSummary templateSummary(array $props = ['applied' => null, 'document_id' => null, 'document_name' => null, 'error_details' => null, 'name' => null, 'template_id' => null, 'template_match' => null, 'uri' => null]) - * @method Models\TemplateTabs templateTabs(array $props = ['approve_tabs' => null, 'checkbox_tabs' => null, 'comment_thread_tabs' => null, 'commission_county_tabs' => null, 'commission_expiration_tabs' => null, 'commission_number_tabs' => null, 'commission_state_tabs' => null, 'company_tabs' => null, 'date_signed_tabs' => null, 'date_tabs' => null, 'decline_tabs' => null, 'draw_tabs' => null, 'email_address_tabs' => null, 'email_tabs' => null, 'envelope_id_tabs' => null, 'first_name_tabs' => null, 'formula_tabs' => null, 'full_name_tabs' => null, 'initial_here_tabs' => null, 'last_name_tabs' => null, 'list_tabs' => null, 'notarize_tabs' => null, 'notary_seal_tabs' => null, 'note_tabs' => null, 'number_tabs' => null, 'phone_number_tabs' => null, 'poly_line_overlay_tabs' => null, 'radio_group_tabs' => null, 'signer_attachment_tabs' => null, 'sign_here_tabs' => null, 'smart_section_tabs' => null, 'ssn_tabs' => null, 'tab_groups' => null, 'text_tabs' => null, 'title_tabs' => null, 'view_tabs' => null, 'zip_tabs' => null]) + * @method Models\TemplateTabs templateTabs(array $props = ['approve_tabs' => null, 'checkbox_tabs' => null, 'comment_thread_tabs' => null, 'commission_county_tabs' => null, 'commission_expiration_tabs' => null, 'commission_number_tabs' => null, 'commission_state_tabs' => null, 'company_tabs' => null, 'currency_tabs' => null, 'date_signed_tabs' => null, 'date_tabs' => null, 'decline_tabs' => null, 'draw_tabs' => null, 'email_address_tabs' => null, 'email_tabs' => null, 'envelope_id_tabs' => null, 'first_name_tabs' => null, 'formula_tabs' => null, 'full_name_tabs' => null, 'initial_here_tabs' => null, 'last_name_tabs' => null, 'list_tabs' => null, 'notarize_tabs' => null, 'notary_seal_tabs' => null, 'note_tabs' => null, 'number_tabs' => null, 'phone_number_tabs' => null, 'poly_line_overlay_tabs' => null, 'prefill_tabs' => null, 'radio_group_tabs' => null, 'signer_attachment_tabs' => null, 'sign_here_tabs' => null, 'smart_section_tabs' => null, 'ssn_tabs' => null, 'tab_groups' => null, 'text_tabs' => null, 'title_tabs' => null, 'view_tabs' => null, 'zip_tabs' => null]) * @method Models\TemplateUpdateSummary templateUpdateSummary(array $props = ['bulk_envelope_status' => null, 'envelope_id' => null, 'error_details' => null, 'list_custom_field_update_results' => null, 'lock_information' => null, 'purge_state' => null, 'recipient_update_results' => null, 'tab_update_results' => null, 'text_custom_field_update_results' => null]) - * @method Models\Text text(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Text text(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'formula' => null, 'formula_metadata' => null, 'height' => null, 'height_metadata' => null, 'is_payment_amount' => null, 'is_payment_amount_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\TextCustomField textCustomField(array $props = ['configuration_type' => null, 'error_details' => null, 'field_id' => null, 'name' => null, 'required' => null, 'show' => null, 'value' => null]) * @method Models\TimeStampField timeStampField(array $props = ['document_security_store' => null, 'max_time_stamp_signature_length' => null, 'time_stamp_field_name' => null]) - * @method Models\Title title(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Title title(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\TspHealthCheckRequest tspHealthCheckRequest(array $props = ['app_version' => null, 'description' => null, 'error' => null, 'status' => null, 'status_description' => null]) * @method Models\TspHealthCheckStatusDescription tspHealthCheckStatusDescription(array $props = ['description' => null, 'error' => null, 'hostname' => null, 'response_seconds' => null, 'status' => null, 'type' => null]) * @method Models\UpdateTransactionRequest updateTransactionRequest(array $props = ['code' => null, 'message' => null, 'state' => null]) * @method Models\UpdateTransactionResponse updateTransactionResponse(array $props = ['redirection_url' => null]) * @method Models\UsageHistory usageHistory(array $props = ['last_sent_date_time' => null, 'last_signed_date_time' => null, 'sent_count' => null, 'signed_count' => null]) * @method Models\User user(array $props = ['cell_phone_number' => null, 'country_code' => null, 'credentials' => null, 'display_name' => null, 'email' => null, 'external_claims' => null]) - * @method Models\UserAccountManagementGranularInformation userAccountManagementGranularInformation(array $props = ['can_manage_account_security_settings' => null, 'can_manage_account_security_settings_metadata' => null, 'can_manage_account_settings' => null, 'can_manage_account_settings_metadata' => null, 'can_manage_admins' => null, 'can_manage_admins_metadata' => null, 'can_manage_envelope_transfer' => null, 'can_manage_envelope_transfer_metadata' => null, 'can_manage_reporting' => null, 'can_manage_reporting_metadata' => null, 'can_manage_sharing' => null, 'can_manage_sharing_metadata' => null, 'can_manage_signing_groups' => null, 'can_manage_signing_groups_metadata' => null, 'can_manage_users' => null, 'can_manage_users_metadata' => null, 'can_view_users' => null]) + * @method Models\UserAccountManagementGranularInformation userAccountManagementGranularInformation(array $props = ['can_manage_account_security_settings' => null, 'can_manage_account_security_settings_metadata' => null, 'can_manage_account_settings' => null, 'can_manage_account_settings_metadata' => null, 'can_manage_admins' => null, 'can_manage_admins_metadata' => null, 'can_manage_document_retention' => null, 'can_manage_document_retention_metadata' => null, 'can_manage_envelope_transfer' => null, 'can_manage_envelope_transfer_metadata' => null, 'can_manage_reporting' => null, 'can_manage_reporting_metadata' => null, 'can_manage_sharing' => null, 'can_manage_sharing_metadata' => null, 'can_manage_signing_groups' => null, 'can_manage_signing_groups_metadata' => null, 'can_manage_users' => null, 'can_manage_users_metadata' => null, 'can_view_users' => null]) * @method Models\UserInfo userInfo(array $props = ['account_id' => null, 'account_name' => null, 'activation_access_code' => null, 'email' => null, 'error_details' => null, 'login_status' => null, 'membership_id' => null, 'send_activation_email' => null, 'uri' => null, 'user_id' => null, 'user_name' => null, 'user_status' => null, 'user_type' => null]) * @method Models\UserInfoList userInfoList(array $props = ['users' => null]) * @method Models\UserInfoResponse userInfoResponse(array $props = ['envelope_id' => null, 'language' => null, 'seal' => null, 'sender' => null, 'user' => null]) - * @method Models\UserInformation userInformation(array $props = ['activation_access_code' => null, 'company' => null, 'connect_configurations' => null, 'country_code' => null, 'created_date_time' => null, 'custom_settings' => null, 'default_account_id' => null, 'email' => null, 'enable_connect_for_user' => null, 'error_details' => null, 'first_name' => null, 'forgotten_password_info' => null, 'group_list' => null, 'home_address' => null, 'initials_image_uri' => null, 'is_admin' => null, 'is_nar_enabled' => null, 'job_title' => null, 'last_login' => null, 'last_name' => null, 'login_status' => null, 'middle_name' => null, 'password' => null, 'password_expiration' => null, 'permission_profile_id' => null, 'permission_profile_name' => null, 'profile_image_uri' => null, 'send_activation_email' => null, 'send_activation_on_invalid_login' => null, 'signature_image_uri' => null, 'subscribe' => null, 'suffix_name' => null, 'title' => null, 'uri' => null, 'user_added_to_account_date_time' => null, 'user_id' => null, 'user_name' => null, 'user_profile_last_modified_date' => null, 'user_settings' => null, 'user_status' => null, 'user_type' => null, 'work_address' => null]) + * @method Models\UserInformation userInformation(array $props = ['activation_access_code' => null, 'company' => null, 'connect_configurations' => null, 'country_code' => null, 'created_date_time' => null, 'custom_settings' => null, 'default_account_id' => null, 'email' => null, 'enable_connect_for_user' => null, 'error_details' => null, 'first_name' => null, 'forgotten_password_info' => null, 'group_list' => null, 'has_remote_notary' => null, 'home_address' => null, 'initials_image_uri' => null, 'is_admin' => null, 'is_nar_enabled' => null, 'job_title' => null, 'last_login' => null, 'last_name' => null, 'login_status' => null, 'middle_name' => null, 'password' => null, 'password_expiration' => null, 'permission_profile_id' => null, 'permission_profile_name' => null, 'profile_image_uri' => null, 'send_activation_email' => null, 'send_activation_on_invalid_login' => null, 'signature_image_uri' => null, 'subscribe' => null, 'suffix_name' => null, 'title' => null, 'uri' => null, 'user_added_to_account_date_time' => null, 'user_id' => null, 'user_name' => null, 'user_profile_last_modified_date' => null, 'user_settings' => null, 'user_status' => null, 'user_type' => null, 'work_address' => null]) * @method Models\UserInformationList userInformationList(array $props = ['end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null, 'users' => null]) * @method Models\UserPasswordInformation userPasswordInformation(array $props = ['current_password' => null, 'email' => null, 'forgotten_password_info' => null, 'new_password' => null]) * @method Models\UserPasswordRules userPasswordRules(array $props = ['password_rules' => null, 'user_id' => null]) * @method Models\UserProfile userProfile(array $props = ['address' => null, 'authentication_methods' => null, 'company_name' => null, 'display_organization_info' => null, 'display_personal_info' => null, 'display_profile' => null, 'display_usage_history' => null, 'profile_image_uri' => null, 'title' => null, 'usage_history' => null, 'user_details' => null, 'user_profile_last_modified_date' => null]) - * @method Models\UserSettingsInformation userSettingsInformation(array $props = ['account_management_granular' => null, 'admin_only' => null, 'admin_only_metadata' => null, 'allow_auto_tagging' => null, 'allow_envelope_transfer_to' => null, 'allow_envelope_transfer_to_metadata' => null, 'allow_eseal_recipients' => null, 'allow_eseal_recipients_metadata' => null, 'allow_power_forms_admin_to_access_all_power_form_envelope' => null, 'allow_power_forms_admin_to_access_all_power_form_envelope_metadata' => null, 'allow_recipient_language_selection' => null, 'allow_recipient_language_selection_metadata' => null, 'allow_send_on_behalf_of' => null, 'allow_send_on_behalf_of_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'anchor_tag_versioned_placement_enabled' => null, 'api_account_wide_access' => null, 'api_account_wide_access_metadata' => null, 'api_can_export_ac' => null, 'api_can_export_ac_metadata' => null, 'bulk_send' => null, 'bulk_send_metadata' => null, 'can_charge_account' => null, 'can_charge_account_metadata' => null, 'can_edit_shared_addressbook' => null, 'can_edit_shared_addressbook_metadata' => null, 'can_lock_envelopes' => null, 'can_lock_envelopes_metadata' => null, 'can_manage_account' => null, 'can_manage_account_metadata' => null, 'can_manage_distributor' => null, 'can_manage_distributor_metadata' => null, 'can_manage_templates' => null, 'can_manage_templates_metadata' => null, 'can_send_api_requests' => null, 'can_send_api_requests_metadata' => null, 'can_send_envelope' => null, 'can_send_envelope_metadata' => null, 'can_sign_envelope' => null, 'can_sign_envelope_metadata' => null, 'can_use_scratchpad' => null, 'can_use_scratchpad_metadata' => null, 'can_use_smart_contracts' => null, 'can_use_smart_contracts_metadata' => null, 'disable_document_upload' => null, 'disable_document_upload_metadata' => null, 'disable_other_actions' => null, 'disable_other_actions_metadata' => null, 'enable_ds_pro' => null, 'enable_ds_pro_metadata' => null, 'enable_sequential_signing_api' => null, 'enable_sequential_signing_api_metadata' => null, 'enable_sequential_signing_ui' => null, 'enable_sequential_signing_ui_metadata' => null, 'enable_signer_attachments' => null, 'enable_signer_attachments_metadata' => null, 'enable_sign_on_paper_override' => null, 'enable_sign_on_paper_override_metadata' => null, 'enable_transaction_point' => null, 'enable_transaction_point_metadata' => null, 'enable_vaulting' => null, 'enable_vaulting_metadata' => null, 'express_send_only' => null, 'locale' => null, 'locale_metadata' => null, 'locale_policy' => null, 'manage_clickwraps_mode' => null, 'manage_clickwraps_mode_metadata' => null, 'modified_by' => null, 'modified_by_metadata' => null, 'modified_date' => null, 'modified_date_metadata' => null, 'modified_page' => null, 'modified_page_metadata' => null, 'new_send_ui' => null, 'new_send_ui_metadata' => null, 'power_form_mode' => null, 'power_form_mode_metadata' => null, 'recipient_viewed_notification' => null, 'recipient_viewed_notification_metadata' => null, 'seal_identifiers' => null, 'self_signed_recipient_email_document' => null, 'self_signed_recipient_email_document_metadata' => null, 'sender_email_notifications' => null, 'signer_email_notifications' => null, 'supplemental_document_include_in_download' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'template_active_creation' => null, 'template_active_creation_metadata' => null, 'template_apply_notify' => null, 'template_apply_notify_metadata' => null, 'template_auto_matching' => null, 'template_auto_matching_metadata' => null, 'template_matching_sensitivity' => null, 'template_matching_sensitivity_metadata' => null, 'template_page_level_matching' => null, 'template_page_level_matching_metadata' => null, 'timezone_dst' => null, 'timezone_dst_metadata' => null, 'timezone_mask' => null, 'timezone_mask_metadata' => null, 'timezone_offset' => null, 'timezone_offset_metadata' => null, 'timezone_sending_pref' => null, 'timezone_sending_pref_metadata' => null, 'timezone_signing_pref' => null, 'timezone_signing_pref_metadata' => null, 'transaction_point_site_name_url' => null, 'transaction_point_site_name_url_metadata' => null, 'transaction_point_user_name' => null, 'transaction_point_user_name_metadata' => null, 'vaulting_mode' => null, 'vaulting_mode_metadata' => null]) + * @method Models\UserSettingsInformation userSettingsInformation(array $props = ['account_management_granular' => null, 'admin_only' => null, 'admin_only_metadata' => null, 'allow_auto_tagging' => null, 'allow_envelope_transfer_to' => null, 'allow_envelope_transfer_to_metadata' => null, 'allow_eseal_recipients' => null, 'allow_eseal_recipients_metadata' => null, 'allow_power_forms_admin_to_access_all_power_form_envelope' => null, 'allow_power_forms_admin_to_access_all_power_form_envelope_metadata' => null, 'allow_recipient_language_selection' => null, 'allow_recipient_language_selection_metadata' => null, 'allow_send_on_behalf_of' => null, 'allow_send_on_behalf_of_metadata' => null, 'allow_supplemental_documents' => null, 'allow_supplemental_documents_metadata' => null, 'anchor_tag_versioned_placement_enabled' => null, 'api_account_wide_access' => null, 'api_account_wide_access_metadata' => null, 'api_can_export_ac' => null, 'api_can_export_ac_metadata' => null, 'bulk_send' => null, 'bulk_send_metadata' => null, 'can_charge_account' => null, 'can_charge_account_metadata' => null, 'can_edit_shared_addressbook' => null, 'can_edit_shared_addressbook_metadata' => null, 'can_lock_envelopes' => null, 'can_lock_envelopes_metadata' => null, 'can_manage_account' => null, 'can_manage_account_metadata' => null, 'can_manage_distributor' => null, 'can_manage_distributor_metadata' => null, 'can_manage_templates' => null, 'can_manage_templates_metadata' => null, 'can_send_api_requests' => null, 'can_send_api_requests_metadata' => null, 'can_send_envelope' => null, 'can_send_envelope_metadata' => null, 'can_send_envelopes_via_sms' => null, 'can_send_envelopes_via_sms_metadata' => null, 'can_sign_envelope' => null, 'can_sign_envelope_metadata' => null, 'can_use_scratchpad' => null, 'can_use_scratchpad_metadata' => null, 'can_use_smart_contracts' => null, 'can_use_smart_contracts_metadata' => null, 'disable_document_upload' => null, 'disable_document_upload_metadata' => null, 'disable_other_actions' => null, 'disable_other_actions_metadata' => null, 'enable_ds_pro' => null, 'enable_ds_pro_metadata' => null, 'enable_sequential_signing_api' => null, 'enable_sequential_signing_api_metadata' => null, 'enable_sequential_signing_ui' => null, 'enable_sequential_signing_ui_metadata' => null, 'enable_signer_attachments' => null, 'enable_signer_attachments_metadata' => null, 'enable_sign_on_paper_override' => null, 'enable_sign_on_paper_override_metadata' => null, 'enable_transaction_point' => null, 'enable_transaction_point_metadata' => null, 'enable_vaulting' => null, 'enable_vaulting_metadata' => null, 'express_send_only' => null, 'locale' => null, 'locale_metadata' => null, 'locale_policy' => null, 'manage_clickwraps_mode' => null, 'manage_clickwraps_mode_metadata' => null, 'modified_by' => null, 'modified_by_metadata' => null, 'modified_date' => null, 'modified_date_metadata' => null, 'modified_page' => null, 'modified_page_metadata' => null, 'new_send_ui' => null, 'new_send_ui_metadata' => null, 'power_form_mode' => null, 'power_form_mode_metadata' => null, 'recipient_viewed_notification' => null, 'recipient_viewed_notification_metadata' => null, 'seal_identifiers' => null, 'self_signed_recipient_email_document' => null, 'self_signed_recipient_email_document_metadata' => null, 'sender_email_notifications' => null, 'signer_email_notifications' => null, 'supplemental_document_include_in_download' => null, 'supplemental_documents_must_accept' => null, 'supplemental_documents_must_accept_metadata' => null, 'supplemental_documents_must_read' => null, 'supplemental_documents_must_read_metadata' => null, 'supplemental_documents_must_view' => null, 'supplemental_documents_must_view_metadata' => null, 'template_active_creation' => null, 'template_active_creation_metadata' => null, 'template_apply_notify' => null, 'template_apply_notify_metadata' => null, 'template_auto_matching' => null, 'template_auto_matching_metadata' => null, 'template_matching_sensitivity' => null, 'template_matching_sensitivity_metadata' => null, 'template_page_level_matching' => null, 'template_page_level_matching_metadata' => null, 'timezone_dst' => null, 'timezone_dst_metadata' => null, 'timezone_mask' => null, 'timezone_mask_metadata' => null, 'timezone_offset' => null, 'timezone_offset_metadata' => null, 'timezone_sending_pref' => null, 'timezone_sending_pref_metadata' => null, 'timezone_signing_pref' => null, 'timezone_signing_pref_metadata' => null, 'transaction_point_site_name_url' => null, 'transaction_point_site_name_url_metadata' => null, 'transaction_point_user_name' => null, 'transaction_point_user_name_metadata' => null, 'vaulting_mode' => null, 'vaulting_mode_metadata' => null]) * @method Models\UserSharedItem userSharedItem(array $props = ['error_details' => null, 'shared' => null, 'user' => null]) * @method Models\UserSignature userSignature(array $props = ['adopted_date_time' => null, 'created_date_time' => null, 'custom_field' => null, 'date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'error_details' => null, 'external_id' => null, 'image_base64' => null, 'image_type' => null, 'initials150_image_id' => null, 'initials_image_uri' => null, 'is_default' => null, 'last_modified_date_time' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'nrds_status' => null, 'phonetic_name' => null, 'signature150_image_id' => null, 'signature_font' => null, 'signature_id' => null, 'signature_image_uri' => null, 'signature_initials' => null, 'signature_name' => null, 'signature_rights' => null, 'signature_type' => null, 'stamp_format' => null, 'stamp_image_uri' => null, 'stamp_size_mm' => null, 'stamp_type' => null, 'status' => null]) - * @method Models\UserSignatureDefinition userSignatureDefinition(array $props = ['date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'external_id' => null, 'image_type' => null, 'is_default' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'phonetic_name' => null, 'signature_font' => null, 'signature_id' => null, 'signature_initials' => null, 'signature_name' => null, 'stamp_format' => null, 'stamp_size_mm' => null]) + * @method Models\UserSignatureDefinition userSignatureDefinition(array $props = ['date_stamp_properties' => null, 'disallow_user_resize_stamp' => null, 'external_id' => null, 'image_type' => null, 'is_default' => null, 'nrds_id' => null, 'nrds_last_name' => null, 'phonetic_name' => null, 'signature_font' => null, 'signature_id' => null, 'signature_initials' => null, 'signature_name' => null, 'signature_type' => null, 'stamp_format' => null, 'stamp_size_mm' => null]) * @method Models\UserSignaturesInformation userSignaturesInformation(array $props = ['user_signatures' => null]) * @method Models\UserSocialIdResult userSocialIdResult(array $props = ['social_account_information' => null, 'user_id' => null]) * @method Models\UsersResponse usersResponse(array $props = ['end_position' => null, 'next_uri' => null, 'previous_uri' => null, 'result_set_size' => null, 'start_position' => null, 'total_set_size' => null, 'users' => null]) - * @method Models\View view(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'required_read' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\View view(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'button_text' => null, 'button_text_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'merge_field' => null, 'merge_field_xml' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'required' => null, 'required_metadata' => null, 'required_read' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) * @method Models\ViewUrl viewUrl(array $props = ['url' => null]) * @method Models\Watermark watermark(array $props = ['display_angle' => null, 'enabled' => null, 'font' => null, 'font_color' => null, 'font_size' => null, 'id' => null, 'image_base64' => null, 'transparency' => null, 'watermark_text' => null]) - * @method Models\Witness witness(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null, 'witness_for' => null, 'witness_for_guid' => null]) + * @method Models\Witness witness(array $props = ['access_code' => null, 'access_code_metadata' => null, 'add_access_code_to_email' => null, 'additional_notifications' => null, 'agent_can_edit_email' => null, 'agent_can_edit_name' => null, 'allow_system_override_for_locked_recipient' => null, 'auto_navigation' => null, 'auto_responded_reason' => null, 'bulk_recipients_uri' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, 'creation_reason' => null, 'custom_fields' => null, 'declined_date_time' => null, 'declined_reason' => null, 'default_recipient' => null, 'delivered_date_time' => null, 'delivery_method' => null, 'delivery_method_metadata' => null, 'designator_id' => null, 'designator_id_guid' => null, 'document_visibility' => null, 'email' => null, 'email_metadata' => null, 'email_notification' => null, 'embedded_recipient_start_url' => null, 'error_details' => null, 'excluded_documents' => null, 'fax_number' => null, 'fax_number_metadata' => null, 'first_name' => null, 'first_name_metadata' => null, 'full_name' => null, 'full_name_metadata' => null, 'id_check_configuration_name' => null, 'id_check_configuration_name_metadata' => null, 'id_check_information_input' => null, 'identity_verification' => null, 'inherit_email_notification_configuration' => null, 'is_bulk_recipient' => null, 'is_bulk_recipient_metadata' => null, 'last_name' => null, 'last_name_metadata' => null, 'locked_recipient_phone_auth_editable' => null, 'locked_recipient_sms_editable' => null, 'name' => null, 'name_metadata' => null, 'notary_id' => null, 'note' => null, 'note_metadata' => null, 'offline_attributes' => null, 'phone_authentication' => null, 'phone_number' => null, 'proof_file' => null, 'recipient_attachments' => null, 'recipient_authentication_status' => null, 'recipient_feature_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_signature_providers' => null, 'recipient_supplies_tabs' => null, 'recipient_type' => null, 'recipient_type_metadata' => null, 'require_id_lookup' => null, 'require_id_lookup_metadata' => null, 'require_signer_certificate' => null, 'require_sign_on_paper' => null, 'require_upload_signature' => null, 'role_name' => null, 'routing_order' => null, 'routing_order_metadata' => null, 'sent_date_time' => null, 'signature_info' => null, 'signed_date_time' => null, 'sign_in_each_location' => null, 'sign_in_each_location_metadata' => null, 'signing_group_id' => null, 'signing_group_id_metadata' => null, 'signing_group_name' => null, 'signing_group_users' => null, 'sms_authentication' => null, 'social_authentications' => null, 'status' => null, 'status_code' => null, 'suppress_emails' => null, 'tabs' => null, 'template_locked' => null, 'template_required' => null, 'total_tab_count' => null, 'user_id' => null, 'witness_for' => null, 'witness_for_guid' => null]) * @method Models\Workflow workflow(array $props = ['current_workflow_step_id' => null, 'workflow_status' => null, 'workflow_steps' => null]) * @method Models\WorkflowStep workflowStep(array $props = ['action' => null, 'completed_date' => null, 'item_id' => null, 'recipient_routing' => null, 'status' => null, 'triggered_date' => null, 'trigger_on_item' => null, 'workflow_step_id' => null]) * @method Models\Workspace workspace(array $props = ['billable_account_id' => null, 'caller_information' => null, 'created' => null, 'created_by_information' => null, 'last_modified' => null, 'last_modified_by_information' => null, 'settings' => null, 'status' => null, 'workspace_base_url' => null, 'workspace_description' => null, 'workspace_id' => null, 'workspace_name' => null, 'workspace_uri' => null]) @@ -520,7 +537,7 @@ * @method Models\WorkspaceSettings workspaceSettings(array $props = ['comments_allowed' => null]) * @method Models\WorkspaceUser workspaceUser(array $props = ['account_id' => null, 'account_name' => null, 'active_since' => null, 'created' => null, 'created_by_id' => null, 'email' => null, 'error_details' => null, 'invitation_email_blurb' => null, 'invitation_email_subject' => null, 'last_modified' => null, 'last_modified_by_id' => null, 'status' => null, 'type' => null, 'user_id' => null, 'user_name' => null, 'workspace_id' => null, 'workspace_user_base_url' => null, 'workspace_user_id' => null, 'workspace_user_uri' => null]) * @method Models\WorkspaceUserAuthorization workspaceUserAuthorization(array $props = ['can_delete' => null, 'can_move' => null, 'can_transact' => null, 'can_view' => null, 'created' => null, 'created_by_id' => null, 'error_details' => null, 'modified' => null, 'modified_by_id' => null, 'workspace_user_id' => null, 'workspace_user_information' => null]) - * @method Models\Zip zip(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'smart_contract_information' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'use_dash4' => null, 'use_dash4_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) + * @method Models\Zip zip(array $props = ['anchor_allow_white_space_in_characters' => null, 'anchor_allow_white_space_in_characters_metadata' => null, 'anchor_case_sensitive' => null, 'anchor_case_sensitive_metadata' => null, 'anchor_horizontal_alignment' => null, 'anchor_horizontal_alignment_metadata' => null, 'anchor_ignore_if_not_present' => null, 'anchor_ignore_if_not_present_metadata' => null, 'anchor_match_whole_word' => null, 'anchor_match_whole_word_metadata' => null, 'anchor_string' => null, 'anchor_string_metadata' => null, 'anchor_tab_processor_version' => null, 'anchor_tab_processor_version_metadata' => null, 'anchor_units' => null, 'anchor_units_metadata' => null, 'anchor_x_offset' => null, 'anchor_x_offset_metadata' => null, 'anchor_y_offset' => null, 'anchor_y_offset_metadata' => null, 'bold' => null, 'bold_metadata' => null, 'conceal_value_on_document' => null, 'conceal_value_on_document_metadata' => null, 'conditional_parent_label' => null, 'conditional_parent_label_metadata' => null, 'conditional_parent_value' => null, 'conditional_parent_value_metadata' => null, 'custom_tab_id' => null, 'custom_tab_id_metadata' => null, 'disable_auto_size' => null, 'disable_auto_size_metadata' => null, 'document_id' => null, 'document_id_metadata' => null, 'error_details' => null, 'font' => null, 'font_color' => null, 'font_color_metadata' => null, 'font_metadata' => null, 'font_size' => null, 'font_size_metadata' => null, 'form_order' => null, 'form_order_metadata' => null, 'form_page_label' => null, 'form_page_label_metadata' => null, 'form_page_number' => null, 'form_page_number_metadata' => null, 'height' => null, 'height_metadata' => null, 'italic' => null, 'italic_metadata' => null, 'locale_policy' => null, 'locked' => null, 'locked_metadata' => null, 'max_length' => null, 'max_length_metadata' => null, 'merge_field' => null, 'merge_field_xml' => null, 'name' => null, 'name_metadata' => null, 'original_value' => null, 'original_value_metadata' => null, 'page_number' => null, 'page_number_metadata' => null, 'recipient_id' => null, 'recipient_id_guid' => null, 'recipient_id_guid_metadata' => null, 'recipient_id_metadata' => null, 'require_all' => null, 'require_all_metadata' => null, 'required' => null, 'required_metadata' => null, 'require_initial_on_shared_change' => null, 'require_initial_on_shared_change_metadata' => null, 'sender_required' => null, 'sender_required_metadata' => null, 'shared' => null, 'shared_metadata' => null, 'share_to_recipients' => null, 'share_to_recipients_metadata' => null, 'smart_contract_information' => null, 'source' => null, 'status' => null, 'status_metadata' => null, 'tab_group_labels' => null, 'tab_group_labels_metadata' => null, 'tab_id' => null, 'tab_id_metadata' => null, 'tab_label' => null, 'tab_label_metadata' => null, 'tab_order' => null, 'tab_order_metadata' => null, 'tab_type' => null, 'tab_type_metadata' => null, 'template_locked' => null, 'template_locked_metadata' => null, 'template_required' => null, 'template_required_metadata' => null, 'tooltip' => null, 'tool_tip_metadata' => null, 'underline' => null, 'underline_metadata' => null, 'use_dash4' => null, 'use_dash4_metadata' => null, 'validation_message' => null, 'validation_message_metadata' => null, 'validation_pattern' => null, 'validation_pattern_metadata' => null, 'value' => null, 'value_metadata' => null, 'width' => null, 'width_metadata' => null, 'x_position' => null, 'x_position_metadata' => null, 'y_position' => null, 'y_position_metadata' => null]) */ class Client {