diff --git a/examples/SignatureRequestCreateEmbeddedExample.php b/examples/SignatureRequestCreateEmbeddedExample.php
index 95f731502..185e3b749 100644
--- a/examples/SignatureRequestCreateEmbeddedExample.php
+++ b/examples/SignatureRequestCreateEmbeddedExample.php
@@ -19,9 +19,6 @@
->setUpload(true)
->setForceAdvancedSignatureDetails(false);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -50,7 +47,6 @@
->setFiles([
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/examples/SignatureRequestCreateEmbeddedExample.py b/examples/SignatureRequestCreateEmbeddedExample.py
index 0e9bc371a..adf6b8f02 100644
--- a/examples/SignatureRequestCreateEmbeddedExample.py
+++ b/examples/SignatureRequestCreateEmbeddedExample.py
@@ -19,10 +19,6 @@
force_advanced_signature_details=False,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -54,7 +50,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/examples/SignatureRequestCreateEmbeddedExample.rb b/examples/SignatureRequestCreateEmbeddedExample.rb
index 6252a09c4..3b33e2f80 100644
--- a/examples/SignatureRequestCreateEmbeddedExample.rb
+++ b/examples/SignatureRequestCreateEmbeddedExample.rb
@@ -14,9 +14,6 @@
signing_options.upload = true
signing_options.force_advanced_signature_details = false
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -46,7 +43,6 @@
File.new("./example_signature_request.pdf", "r"),
]
signature_request_create_embedded_request.signing_options = signing_options
-signature_request_create_embedded_request.signer_experience = signer_experience
signature_request_create_embedded_request.signers = signers
begin
diff --git a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.php b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.php
index 5b8196d53..f7ea5d39a 100644
--- a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.php
+++ b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.php
@@ -44,9 +44,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$grouped_signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestGroupedSigners())
->setGroup("Group #1")
->setOrder(0)
@@ -76,7 +73,6 @@
"lawyer2@dropboxsign.com",
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setGroupedSigners($grouped_signers);
try {
diff --git a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.py b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.py
index a65a5f7be..8bc255e6f 100644
--- a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.py
+++ b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.py
@@ -48,10 +48,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
grouped_signers_1 = models.SubSignatureRequestGroupedSigners(
group="Group #1",
order=0,
@@ -83,7 +79,6 @@
"lawyer2@dropboxsign.com",
],
signing_options=signing_options,
- signer_experience=signer_experience,
grouped_signers=grouped_signers,
)
diff --git a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.rb b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
index c936052fc..9910ee894 100644
--- a/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
+++ b/examples/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
@@ -39,9 +39,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
grouped_signers_1 = Dropbox::Sign::SubSignatureRequestGroupedSigners.new
grouped_signers_1.group = "Group #1"
grouped_signers_1.order = 0
@@ -71,7 +68,6 @@
"lawyer2@dropboxsign.com",
]
signature_request_create_embedded_request.signing_options = signing_options
-signature_request_create_embedded_request.signer_experience = signer_experience
signature_request_create_embedded_request.grouped_signers = grouped_signers
begin
diff --git a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.php b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.php
index 598636c01..ab2b4f850 100644
--- a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.php
+++ b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.php
@@ -19,9 +19,6 @@
->setUpload(true)
->setForceAdvancedSignatureDetails(false);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestTemplateSigner())
->setRole("Client")
->setName("George")
@@ -40,7 +37,6 @@
->setSubject("Purchase Order")
->setTestMode(true)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.py b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.py
index ecb367eca..885a24811 100644
--- a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.py
+++ b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.py
@@ -19,10 +19,6 @@
force_advanced_signature_details=False,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestTemplateSigner(
role="Client",
name="George",
@@ -42,7 +38,6 @@
subject="Purchase Order",
test_mode=True,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.rb b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.rb
index 5f37d4834..18d1d8be4 100644
--- a/examples/SignatureRequestCreateEmbeddedWithTemplateExample.rb
+++ b/examples/SignatureRequestCreateEmbeddedWithTemplateExample.rb
@@ -14,9 +14,6 @@
signing_options.upload = true
signing_options.force_advanced_signature_details = false
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
signers_1.role = "Client"
signers_1.name = "George"
@@ -35,7 +32,6 @@
signature_request_create_embedded_with_template_request.subject = "Purchase Order"
signature_request_create_embedded_with_template_request.test_mode = true
signature_request_create_embedded_with_template_request.signing_options = signing_options
-signature_request_create_embedded_with_template_request.signer_experience = signer_experience
signature_request_create_embedded_with_template_request.signers = signers
begin
diff --git a/examples/SignatureRequestEditEmbeddedExample.php b/examples/SignatureRequestEditEmbeddedExample.php
index 99b5d3cac..868c62562 100644
--- a/examples/SignatureRequestEditEmbeddedExample.php
+++ b/examples/SignatureRequestEditEmbeddedExample.php
@@ -18,9 +18,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -49,7 +46,6 @@
->setFiles([
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/examples/SignatureRequestEditEmbeddedExample.py b/examples/SignatureRequestEditEmbeddedExample.py
index 662b716d1..e3e5f1a87 100644
--- a/examples/SignatureRequestEditEmbeddedExample.py
+++ b/examples/SignatureRequestEditEmbeddedExample.py
@@ -18,10 +18,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -53,7 +49,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/examples/SignatureRequestEditEmbeddedExample.rb b/examples/SignatureRequestEditEmbeddedExample.rb
index 52bb7dcab..0e192377c 100644
--- a/examples/SignatureRequestEditEmbeddedExample.rb
+++ b/examples/SignatureRequestEditEmbeddedExample.rb
@@ -13,9 +13,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -45,7 +42,6 @@
File.new("./example_signature_request.pdf", "r"),
]
signature_request_edit_embedded_request.signing_options = signing_options
-signature_request_edit_embedded_request.signer_experience = signer_experience
signature_request_edit_embedded_request.signers = signers
begin
diff --git a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.php b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.php
index f5838ae57..08ebeac0a 100644
--- a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.php
+++ b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.php
@@ -44,9 +44,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$grouped_signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestGroupedSigners())
->setGroup("Group #1")
->setOrder(0)
@@ -76,7 +73,6 @@
"lawyer2@dropboxsign.com",
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setGroupedSigners($grouped_signers);
try {
diff --git a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.py b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.py
index 5351ba105..9c26905c3 100644
--- a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.py
+++ b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.py
@@ -48,10 +48,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
grouped_signers_1 = models.SubSignatureRequestGroupedSigners(
group="Group #1",
order=0,
@@ -83,7 +79,6 @@
"lawyer2@dropboxsign.com",
],
signing_options=signing_options,
- signer_experience=signer_experience,
grouped_signers=grouped_signers,
)
diff --git a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.rb b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.rb
index 91096eb64..0fc7bc7a3 100644
--- a/examples/SignatureRequestEditEmbeddedGroupedSignersExample.rb
+++ b/examples/SignatureRequestEditEmbeddedGroupedSignersExample.rb
@@ -39,9 +39,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
grouped_signers_1 = Dropbox::Sign::SubSignatureRequestGroupedSigners.new
grouped_signers_1.group = "Group #1"
grouped_signers_1.order = 0
@@ -71,7 +68,6 @@
"lawyer2@dropboxsign.com",
]
signature_request_edit_embedded_request.signing_options = signing_options
-signature_request_edit_embedded_request.signer_experience = signer_experience
signature_request_edit_embedded_request.grouped_signers = grouped_signers
begin
diff --git a/examples/SignatureRequestEditEmbeddedWithTemplateExample.php b/examples/SignatureRequestEditEmbeddedWithTemplateExample.php
index e124eea2d..640f35dfc 100644
--- a/examples/SignatureRequestEditEmbeddedWithTemplateExample.php
+++ b/examples/SignatureRequestEditEmbeddedWithTemplateExample.php
@@ -18,9 +18,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestTemplateSigner())
->setRole("Client")
->setName("George")
@@ -39,7 +36,6 @@
->setSubject("Purchase Order")
->setTestMode(true)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/examples/SignatureRequestEditEmbeddedWithTemplateExample.py b/examples/SignatureRequestEditEmbeddedWithTemplateExample.py
index dad13e3ff..92f0378ef 100644
--- a/examples/SignatureRequestEditEmbeddedWithTemplateExample.py
+++ b/examples/SignatureRequestEditEmbeddedWithTemplateExample.py
@@ -18,10 +18,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestTemplateSigner(
role="Client",
name="George",
@@ -41,7 +37,6 @@
subject="Purchase Order",
test_mode=True,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/examples/SignatureRequestEditEmbeddedWithTemplateExample.rb b/examples/SignatureRequestEditEmbeddedWithTemplateExample.rb
index 7d15ff59b..f504f1944 100644
--- a/examples/SignatureRequestEditEmbeddedWithTemplateExample.rb
+++ b/examples/SignatureRequestEditEmbeddedWithTemplateExample.rb
@@ -13,9 +13,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
signers_1.role = "Client"
signers_1.name = "George"
@@ -34,7 +31,6 @@
signature_request_edit_embedded_with_template_request.subject = "Purchase Order"
signature_request_edit_embedded_with_template_request.test_mode = true
signature_request_edit_embedded_with_template_request.signing_options = signing_options
-signature_request_edit_embedded_with_template_request.signer_experience = signer_experience
signature_request_edit_embedded_with_template_request.signers = signers
begin
diff --git a/examples/SignatureRequestEditExample.php b/examples/SignatureRequestEditExample.php
index e28995336..92d3747c5 100644
--- a/examples/SignatureRequestEditExample.php
+++ b/examples/SignatureRequestEditExample.php
@@ -21,9 +21,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -58,7 +55,6 @@
EOD, true))
->setFieldOptions($field_options)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/examples/SignatureRequestEditExample.py b/examples/SignatureRequestEditExample.py
index 1a1632a26..4c6fc1e74 100644
--- a/examples/SignatureRequestEditExample.py
+++ b/examples/SignatureRequestEditExample.py
@@ -22,10 +22,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -63,7 +59,6 @@
"""),
field_options=field_options,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/examples/SignatureRequestEditExample.rb b/examples/SignatureRequestEditExample.rb
index a4bc0f315..e55d7beee 100644
--- a/examples/SignatureRequestEditExample.rb
+++ b/examples/SignatureRequestEditExample.rb
@@ -16,9 +16,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -55,7 +52,6 @@
)
signature_request_edit_request.field_options = field_options
signature_request_edit_request.signing_options = signing_options
-signature_request_edit_request.signer_experience = signer_experience
signature_request_edit_request.signers = signers
begin
diff --git a/examples/TemplateCreateExample.php b/examples/TemplateCreateExample.php
index 1723f03f3..93b6dedd0 100644
--- a/examples/TemplateCreateExample.php
+++ b/examples/TemplateCreateExample.php
@@ -14,9 +14,6 @@
$field_options = (new Dropbox\Sign\Model\SubFieldOptions())
->setDateFormat(Dropbox\Sign\Model\SubFieldOptions::DATE_FORMAT_DD_MM_YYYY);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signer_roles_1 = (new Dropbox\Sign\Model\SubTemplateRole())
->setName("Client")
->setOrder(0);
@@ -88,7 +85,6 @@
->setFiles([
])
->setFieldOptions($field_options)
- ->setSignerExperience($signer_experience)
->setSignerRoles($signer_roles)
->setFormFieldsPerDocument($form_fields_per_document)
->setMergeFields($merge_fields);
diff --git a/examples/TemplateCreateExample.py b/examples/TemplateCreateExample.py
index 29ea47bb7..a6ed3611e 100644
--- a/examples/TemplateCreateExample.py
+++ b/examples/TemplateCreateExample.py
@@ -14,10 +14,6 @@
date_format="DD - MM - YYYY",
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signer_roles_1 = models.SubTemplateRole(
name="Client",
order=0,
@@ -96,7 +92,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
field_options=field_options,
- signer_experience=signer_experience,
signer_roles=signer_roles,
form_fields_per_document=form_fields_per_document,
merge_fields=merge_fields,
diff --git a/examples/TemplateCreateExample.rb b/examples/TemplateCreateExample.rb
index d7b5c992b..f4d623397 100644
--- a/examples/TemplateCreateExample.rb
+++ b/examples/TemplateCreateExample.rb
@@ -9,9 +9,6 @@
field_options = Dropbox::Sign::SubFieldOptions.new
field_options.date_format = "DD - MM - YYYY"
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signer_roles_1 = Dropbox::Sign::SubTemplateRole.new
signer_roles_1.name = "Client"
signer_roles_1.order = 0
@@ -84,7 +81,6 @@
File.new("./example_signature_request.pdf", "r"),
]
template_create_request.field_options = field_options
-template_create_request.signer_experience = signer_experience
template_create_request.signer_roles = signer_roles
template_create_request.form_fields_per_document = form_fields_per_document
template_create_request.merge_fields = merge_fields
diff --git a/examples/TemplateUpdateExample.php b/examples/TemplateUpdateExample.php
index 88aa67c51..c827bc301 100644
--- a/examples/TemplateUpdateExample.php
+++ b/examples/TemplateUpdateExample.php
@@ -11,9 +11,6 @@
$config->setUsername("YOUR_API_KEY");
// $config->setAccessToken("YOUR_ACCESS_TOKEN");
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$form_fields_1 = (new Dropbox\Sign\Model\SubUpdateFormField())
->setApiId("uniqueIdHere_1")
->setName("New name 1");
@@ -35,7 +32,6 @@
"CC Role 1",
"CC Role 2",
])
- ->setSignerExperience($signer_experience)
->setFormFields($form_fields);
try {
diff --git a/examples/TemplateUpdateExample.py b/examples/TemplateUpdateExample.py
index 46d2d7f74..39e767acb 100644
--- a/examples/TemplateUpdateExample.py
+++ b/examples/TemplateUpdateExample.py
@@ -10,10 +10,6 @@
)
with ApiClient(configuration) as api_client:
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
form_fields_1 = models.SubUpdateFormField(
api_id="uniqueIdHere_1",
name="New name 1",
@@ -37,7 +33,6 @@
"CC Role 1",
"CC Role 2",
],
- signer_experience=signer_experience,
form_fields=form_fields,
)
diff --git a/examples/TemplateUpdateExample.rb b/examples/TemplateUpdateExample.rb
index 0642637f6..e0332ea8f 100644
--- a/examples/TemplateUpdateExample.rb
+++ b/examples/TemplateUpdateExample.rb
@@ -6,9 +6,6 @@
# config.access_token = "YOUR_ACCESS_TOKEN"
end
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
form_fields_1 = Dropbox::Sign::SubUpdateFormField.new
form_fields_1.api_id = "uniqueIdHere_1"
form_fields_1.name = "New name 1"
@@ -30,7 +27,6 @@
"CC Role 1",
"CC Role 2",
]
-template_update_request.signer_experience = signer_experience
template_update_request.form_fields = form_fields
begin
diff --git a/examples/json/SignatureRequestCreateEmbeddedRequest.json b/examples/json/SignatureRequestCreateEmbeddedRequest.json
index d28f87ac1..1fd4aa543 100644
--- a/examples/json/SignatureRequestCreateEmbeddedRequest.json
+++ b/examples/json/SignatureRequestCreateEmbeddedRequest.json
@@ -30,8 +30,5 @@
"default_type": "draw",
"force_advanced_signature_details": false
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestCreateEmbeddedRequestGroupedSigners.json b/examples/json/SignatureRequestCreateEmbeddedRequestGroupedSigners.json
index 9ef1082de..fb8cb1935 100644
--- a/examples/json/SignatureRequestCreateEmbeddedRequestGroupedSigners.json
+++ b/examples/json/SignatureRequestCreateEmbeddedRequestGroupedSigners.json
@@ -47,8 +47,5 @@
"phone": false,
"default_type": "draw"
},
- "signer_experience": {
- "form_view": "disabled"
- },
"test_mode": true
}
diff --git a/examples/json/SignatureRequestCreateEmbeddedResponse.json b/examples/json/SignatureRequestCreateEmbeddedResponse.json
index 989e76c10..5def13bab 100644
--- a/examples/json/SignatureRequestCreateEmbeddedResponse.json
+++ b/examples/json/SignatureRequestCreateEmbeddedResponse.json
@@ -47,9 +47,6 @@
"cc_email_addresses": [
"lawyer1@dropboxsign.com",
"lawyer2@dropboxsign.com"
- ],
- "signer_experience": {
- "form_view": "disabled"
- }
+ ]
}
}
diff --git a/examples/json/SignatureRequestCreateEmbeddedWithTemplateRequest.json b/examples/json/SignatureRequestCreateEmbeddedWithTemplateRequest.json
index d23b790f7..079d37786 100644
--- a/examples/json/SignatureRequestCreateEmbeddedWithTemplateRequest.json
+++ b/examples/json/SignatureRequestCreateEmbeddedWithTemplateRequest.json
@@ -20,8 +20,5 @@
"default_type": "draw",
"force_advanced_signature_details": false
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestCreateEmbeddedWithTemplateResponse.json b/examples/json/SignatureRequestCreateEmbeddedWithTemplateResponse.json
index 535b2cc6f..3099142f2 100644
--- a/examples/json/SignatureRequestCreateEmbeddedWithTemplateResponse.json
+++ b/examples/json/SignatureRequestCreateEmbeddedWithTemplateResponse.json
@@ -40,9 +40,6 @@
],
"cc_email_addresses": [
"accounting@dropboxsign.com"
- ],
- "signer_experience": {
- "form_view": "disabled"
- }
+ ]
}
}
diff --git a/examples/json/SignatureRequestEditEmbeddedRequest.json b/examples/json/SignatureRequestEditEmbeddedRequest.json
index 5570d6864..724db5940 100644
--- a/examples/json/SignatureRequestEditEmbeddedRequest.json
+++ b/examples/json/SignatureRequestEditEmbeddedRequest.json
@@ -29,8 +29,5 @@
"phone": false,
"default_type": "draw"
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestEditEmbeddedRequestGroupedSigners.json b/examples/json/SignatureRequestEditEmbeddedRequestGroupedSigners.json
index 12381d070..fb8cb1935 100644
--- a/examples/json/SignatureRequestEditEmbeddedRequestGroupedSigners.json
+++ b/examples/json/SignatureRequestEditEmbeddedRequestGroupedSigners.json
@@ -47,8 +47,5 @@
"phone": false,
"default_type": "draw"
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestEditEmbeddedResponse.json b/examples/json/SignatureRequestEditEmbeddedResponse.json
index 989e76c10..5def13bab 100644
--- a/examples/json/SignatureRequestEditEmbeddedResponse.json
+++ b/examples/json/SignatureRequestEditEmbeddedResponse.json
@@ -47,9 +47,6 @@
"cc_email_addresses": [
"lawyer1@dropboxsign.com",
"lawyer2@dropboxsign.com"
- ],
- "signer_experience": {
- "form_view": "disabled"
- }
+ ]
}
}
diff --git a/examples/json/SignatureRequestEditEmbeddedWithTemplateRequest.json b/examples/json/SignatureRequestEditEmbeddedWithTemplateRequest.json
index 7d5cc961e..742998123 100644
--- a/examples/json/SignatureRequestEditEmbeddedWithTemplateRequest.json
+++ b/examples/json/SignatureRequestEditEmbeddedWithTemplateRequest.json
@@ -19,8 +19,5 @@
"phone": false,
"default_type": "draw"
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestEditEmbeddedWithTemplateResponse.json b/examples/json/SignatureRequestEditEmbeddedWithTemplateResponse.json
index 535b2cc6f..3099142f2 100644
--- a/examples/json/SignatureRequestEditEmbeddedWithTemplateResponse.json
+++ b/examples/json/SignatureRequestEditEmbeddedWithTemplateResponse.json
@@ -40,9 +40,6 @@
],
"cc_email_addresses": [
"accounting@dropboxsign.com"
- ],
- "signer_experience": {
- "form_view": "disabled"
- }
+ ]
}
}
diff --git a/examples/json/SignatureRequestEditRequest.json b/examples/json/SignatureRequestEditRequest.json
index f0e962079..adfda81ec 100644
--- a/examples/json/SignatureRequestEditRequest.json
+++ b/examples/json/SignatureRequestEditRequest.json
@@ -35,8 +35,5 @@
"field_options": {
"date_format": "DD - MM - YYYY"
},
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/SignatureRequestGetResponse.json b/examples/json/SignatureRequestGetResponse.json
index c5a152279..1e4ec3d38 100644
--- a/examples/json/SignatureRequestGetResponse.json
+++ b/examples/json/SignatureRequestGetResponse.json
@@ -53,9 +53,6 @@
"has_sms_auth": false
}
],
- "cc_email_addresses": [],
- "signer_experience": {
- "form_view": "disabled"
- }
+ "cc_email_addresses": []
}
}
diff --git a/examples/json/TemplateCreateRequest.json b/examples/json/TemplateCreateRequest.json
index a928e7228..a3709afcc 100644
--- a/examples/json/TemplateCreateRequest.json
+++ b/examples/json/TemplateCreateRequest.json
@@ -62,8 +62,5 @@
"page": 1
}
],
- "test_mode": true,
- "signer_experience": {
- "form_view": "disabled"
- }
+ "test_mode": true
}
diff --git a/examples/json/TemplateUpdateRequest.json b/examples/json/TemplateUpdateRequest.json
index c88e0ee6f..4dab19474 100644
--- a/examples/json/TemplateUpdateRequest.json
+++ b/examples/json/TemplateUpdateRequest.json
@@ -1,7 +1,4 @@
{
- "signer_experience": {
- "form_view": "disabled"
- },
"title": "Test Title",
"subject": "Test Subject",
"message": "Test Message",
diff --git a/openapi-raw.yaml b/openapi-raw.yaml
index 970c09a78..5efeee60d 100644
--- a/openapi-raw.yaml
+++ b/openapi-raw.yaml
@@ -7978,7 +7978,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__EmbeddedEditUrl::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
FaxLineAddUserRequest:
required:
@@ -8225,6 +8229,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
maxItems: 2
minItems: 1
start_date:
@@ -8457,7 +8462,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestCreateEmbedded::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
expires_at:
description: '_t__SignatureRequestCreateEmbedded::EXPIRES_AT'
type: integer
@@ -8535,7 +8544,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestCreateEmbeddedWithTemplate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditRequest:
properties:
@@ -8647,7 +8660,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestSend::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditEmbeddedRequest:
required:
@@ -8758,7 +8775,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestCreateEmbedded::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditEmbeddedWithTemplateRequest:
required:
@@ -8832,7 +8853,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestCreateEmbeddedWithTemplate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditWithTemplateRequest:
description: ''
@@ -8909,7 +8934,11 @@ components:
type: string
maxLength: 255
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestSendWithTemplate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestRemindRequest:
required:
@@ -9039,7 +9068,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestSend::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestSendWithTemplateRequest:
description: ''
@@ -9122,7 +9155,11 @@ components:
type: string
maxLength: 255
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__SignatureRequestSendWithTemplate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestUpdateRequest:
required:
@@ -9950,6 +9987,7 @@ components:
- enabled_by_default
- forced
type: object
+ x-hideOn: sdk
SubTemplateRole:
properties:
name:
@@ -10201,7 +10239,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__TemplateCreate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateCreateEmbeddedDraftRequest:
required:
@@ -10313,7 +10355,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__TemplateCreateEmbeddedDraft::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateRemoveUserRequest:
properties:
@@ -10349,7 +10395,11 @@ components:
items:
$ref: '#/components/schemas/SubUpdateFormField'
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__TemplateCreateEmbeddedDraft::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateUpdateFilesRequest:
properties:
@@ -10490,7 +10540,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: '_t__UnclaimedDraftCreate::SIGNER_EXPERIENCE'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
UnclaimedDraftCreateEmbeddedRequest:
description: ''
@@ -11520,6 +11574,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
type: object
x-internal-class: true
SignatureRequestResponse:
diff --git a/openapi-sdk.yaml b/openapi-sdk.yaml
index b713b0cb7..af5928716 100644
--- a/openapi-sdk.yaml
+++ b/openapi-sdk.yaml
@@ -8088,8 +8088,6 @@ components:
description: 'Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`.'
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
FaxLineAddUserRequest:
required:
@@ -8344,6 +8342,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
maxItems: 2
minItems: 1
start_date:
@@ -8676,8 +8675,6 @@ components:
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature.
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
expires_at:
description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
type: integer
@@ -8766,8 +8763,6 @@ components:
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature.
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestEditRequest:
properties:
@@ -8922,8 +8917,6 @@ components:
description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
type: integer
nullable: true
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestEditEmbeddedRequest:
required:
@@ -9076,8 +9069,6 @@ components:
description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
type: integer
nullable: true
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestEditEmbeddedWithTemplateRequest:
required:
@@ -9162,8 +9153,6 @@ components:
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature.
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestEditWithTemplateRequest:
description: ''
@@ -9252,8 +9241,6 @@ components:
description: 'The title you want to assign to the SignatureRequest.'
type: string
maxLength: 255
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestRemindRequest:
required:
@@ -9431,8 +9418,6 @@ components:
description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
type: integer
nullable: true
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestSendWithTemplateRequest:
description: ''
@@ -9532,8 +9517,6 @@ components:
description: 'The title you want to assign to the SignatureRequest.'
type: string
maxLength: 255
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
SignatureRequestUpdateRequest:
required:
@@ -10489,23 +10472,6 @@ components:
type: string
format: email
type: object
- SubSignerExperience:
- description: 'Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.'
- properties:
- form_view:
- description: |-
- Changes the form view setting experienced by the signer. Supported versions are:
- - `disabled` - Form view is disabled, and the signer cannot change it
- - `enabled` - Form view is disabled initially, the signer can turn it on using a toggle
- - `enabled_by_default` - Form view is enabled initially. The signer car turn it off using a toggle
- - `forced` - Form view is enabled initially. The signer cannot change it, the toggle is hidden.
- type: string
- enum:
- - disabled
- - enabled
- - enabled_by_default
- - forced
- type: object
SubTemplateRole:
properties:
name:
@@ -10817,8 +10783,6 @@ components:
description: 'Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`).'
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
TemplateCreateEmbeddedDraftRequest:
required:
@@ -10961,8 +10925,6 @@ components:
description: 'Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`).'
type: boolean
default: false
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
TemplateRemoveUserRequest:
properties:
@@ -10997,8 +10959,6 @@ components:
type: array
items:
$ref: '#/components/schemas/SubUpdateFormField'
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
TemplateUpdateFilesRequest:
properties:
@@ -11175,8 +11135,6 @@ components:
**NOTE:** This does not correspond to the **expires_at** returned in the response.
type: integer
nullable: true
- signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
type: object
UnclaimedDraftCreateEmbeddedRequest:
description: ''
@@ -12272,6 +12230,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
type: object
x-internal-class: true
SignatureRequestResponse:
diff --git a/openapi.yaml b/openapi.yaml
index 9ac3cf10c..b4812b372 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -7974,7 +7974,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
FaxLineAddUserRequest:
required:
@@ -8229,6 +8233,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
maxItems: 2
minItems: 1
start_date:
@@ -8562,7 +8567,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
expires_at:
description: 'When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
type: integer
@@ -8652,7 +8661,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditRequest:
properties:
@@ -8808,7 +8821,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditEmbeddedRequest:
required:
@@ -8962,7 +8979,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditEmbeddedWithTemplateRequest:
required:
@@ -9048,7 +9069,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestEditWithTemplateRequest:
description: ''
@@ -9138,7 +9163,11 @@ components:
type: string
maxLength: 255
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestRemindRequest:
required:
@@ -9306,7 +9335,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestSendWithTemplateRequest:
description: ''
@@ -9396,7 +9429,11 @@ components:
type: string
maxLength: 255
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
SignatureRequestUpdateRequest:
required:
@@ -10369,6 +10406,7 @@ components:
- enabled_by_default
- forced
type: object
+ x-hideOn: sdk
SubTemplateRole:
properties:
name:
@@ -10681,7 +10719,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateCreateEmbeddedDraftRequest:
required:
@@ -10825,7 +10867,11 @@ components:
type: boolean
default: false
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateRemoveUserRequest:
properties:
@@ -10861,7 +10907,11 @@ components:
items:
$ref: '#/components/schemas/SubUpdateFormField'
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
TemplateUpdateFilesRequest:
properties:
@@ -11039,7 +11089,11 @@ components:
type: integer
nullable: true
signer_experience:
- $ref: '#/components/schemas/SubSignerExperience'
+ description: 'TBD Form View'
+ allOf:
+ -
+ $ref: '#/components/schemas/SubSignerExperience'
+ x-hideOn: sdk
type: object
UnclaimedDraftCreateEmbeddedRequest:
description: ''
@@ -12135,6 +12189,7 @@ components:
- user_activity
- document_status
- sms_activity
+ - fax_usage
type: object
x-internal-class: true
SignatureRequestResponse:
diff --git a/sandbox/php/src/SignatureRequestCreateEmbeddedExample.php b/sandbox/php/src/SignatureRequestCreateEmbeddedExample.php
index 95f731502..185e3b749 100644
--- a/sandbox/php/src/SignatureRequestCreateEmbeddedExample.php
+++ b/sandbox/php/src/SignatureRequestCreateEmbeddedExample.php
@@ -19,9 +19,6 @@
->setUpload(true)
->setForceAdvancedSignatureDetails(false);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -50,7 +47,6 @@
->setFiles([
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/sandbox/php/src/SignatureRequestCreateEmbeddedGroupedSignersExample.php b/sandbox/php/src/SignatureRequestCreateEmbeddedGroupedSignersExample.php
index 5b8196d53..f7ea5d39a 100644
--- a/sandbox/php/src/SignatureRequestCreateEmbeddedGroupedSignersExample.php
+++ b/sandbox/php/src/SignatureRequestCreateEmbeddedGroupedSignersExample.php
@@ -44,9 +44,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$grouped_signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestGroupedSigners())
->setGroup("Group #1")
->setOrder(0)
@@ -76,7 +73,6 @@
"lawyer2@dropboxsign.com",
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setGroupedSigners($grouped_signers);
try {
diff --git a/sandbox/php/src/SignatureRequestCreateEmbeddedWithTemplateExample.php b/sandbox/php/src/SignatureRequestCreateEmbeddedWithTemplateExample.php
index 598636c01..ab2b4f850 100644
--- a/sandbox/php/src/SignatureRequestCreateEmbeddedWithTemplateExample.php
+++ b/sandbox/php/src/SignatureRequestCreateEmbeddedWithTemplateExample.php
@@ -19,9 +19,6 @@
->setUpload(true)
->setForceAdvancedSignatureDetails(false);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestTemplateSigner())
->setRole("Client")
->setName("George")
@@ -40,7 +37,6 @@
->setSubject("Purchase Order")
->setTestMode(true)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/sandbox/php/src/SignatureRequestEditEmbeddedExample.php b/sandbox/php/src/SignatureRequestEditEmbeddedExample.php
index 99b5d3cac..868c62562 100644
--- a/sandbox/php/src/SignatureRequestEditEmbeddedExample.php
+++ b/sandbox/php/src/SignatureRequestEditEmbeddedExample.php
@@ -18,9 +18,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -49,7 +46,6 @@
->setFiles([
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/sandbox/php/src/SignatureRequestEditEmbeddedGroupedSignersExample.php b/sandbox/php/src/SignatureRequestEditEmbeddedGroupedSignersExample.php
index f5838ae57..08ebeac0a 100644
--- a/sandbox/php/src/SignatureRequestEditEmbeddedGroupedSignersExample.php
+++ b/sandbox/php/src/SignatureRequestEditEmbeddedGroupedSignersExample.php
@@ -44,9 +44,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$grouped_signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestGroupedSigners())
->setGroup("Group #1")
->setOrder(0)
@@ -76,7 +73,6 @@
"lawyer2@dropboxsign.com",
])
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setGroupedSigners($grouped_signers);
try {
diff --git a/sandbox/php/src/SignatureRequestEditEmbeddedWithTemplateExample.php b/sandbox/php/src/SignatureRequestEditEmbeddedWithTemplateExample.php
index e124eea2d..640f35dfc 100644
--- a/sandbox/php/src/SignatureRequestEditEmbeddedWithTemplateExample.php
+++ b/sandbox/php/src/SignatureRequestEditEmbeddedWithTemplateExample.php
@@ -18,9 +18,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestTemplateSigner())
->setRole("Client")
->setName("George")
@@ -39,7 +36,6 @@
->setSubject("Purchase Order")
->setTestMode(true)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/sandbox/php/src/SignatureRequestEditExample.php b/sandbox/php/src/SignatureRequestEditExample.php
index e28995336..92d3747c5 100644
--- a/sandbox/php/src/SignatureRequestEditExample.php
+++ b/sandbox/php/src/SignatureRequestEditExample.php
@@ -21,9 +21,6 @@
->setType(true)
->setUpload(true);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signers_1 = (new Dropbox\Sign\Model\SubSignatureRequestSigner())
->setName("Jack")
->setEmailAddress("jack@example.com")
@@ -58,7 +55,6 @@
EOD, true))
->setFieldOptions($field_options)
->setSigningOptions($signing_options)
- ->setSignerExperience($signer_experience)
->setSigners($signers);
try {
diff --git a/sandbox/php/src/TemplateCreateExample.php b/sandbox/php/src/TemplateCreateExample.php
index 1723f03f3..93b6dedd0 100644
--- a/sandbox/php/src/TemplateCreateExample.php
+++ b/sandbox/php/src/TemplateCreateExample.php
@@ -14,9 +14,6 @@
$field_options = (new Dropbox\Sign\Model\SubFieldOptions())
->setDateFormat(Dropbox\Sign\Model\SubFieldOptions::DATE_FORMAT_DD_MM_YYYY);
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$signer_roles_1 = (new Dropbox\Sign\Model\SubTemplateRole())
->setName("Client")
->setOrder(0);
@@ -88,7 +85,6 @@
->setFiles([
])
->setFieldOptions($field_options)
- ->setSignerExperience($signer_experience)
->setSignerRoles($signer_roles)
->setFormFieldsPerDocument($form_fields_per_document)
->setMergeFields($merge_fields);
diff --git a/sandbox/php/src/TemplateUpdateExample.php b/sandbox/php/src/TemplateUpdateExample.php
index 88aa67c51..c827bc301 100644
--- a/sandbox/php/src/TemplateUpdateExample.php
+++ b/sandbox/php/src/TemplateUpdateExample.php
@@ -11,9 +11,6 @@
$config->setUsername("YOUR_API_KEY");
// $config->setAccessToken("YOUR_ACCESS_TOKEN");
-$signer_experience = (new Dropbox\Sign\Model\SubSignerExperience())
- ->setFormView(Dropbox\Sign\Model\SubSignerExperience::FORM_VIEW_DISABLED);
-
$form_fields_1 = (new Dropbox\Sign\Model\SubUpdateFormField())
->setApiId("uniqueIdHere_1")
->setName("New name 1");
@@ -35,7 +32,6 @@
"CC Role 1",
"CC Role 2",
])
- ->setSignerExperience($signer_experience)
->setFormFields($form_fields);
try {
diff --git a/sandbox/python/src/SignatureRequestCreateEmbeddedExample.py b/sandbox/python/src/SignatureRequestCreateEmbeddedExample.py
index 0e9bc371a..adf6b8f02 100644
--- a/sandbox/python/src/SignatureRequestCreateEmbeddedExample.py
+++ b/sandbox/python/src/SignatureRequestCreateEmbeddedExample.py
@@ -19,10 +19,6 @@
force_advanced_signature_details=False,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -54,7 +50,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/sandbox/python/src/SignatureRequestCreateEmbeddedGroupedSignersExample.py b/sandbox/python/src/SignatureRequestCreateEmbeddedGroupedSignersExample.py
index a65a5f7be..8bc255e6f 100644
--- a/sandbox/python/src/SignatureRequestCreateEmbeddedGroupedSignersExample.py
+++ b/sandbox/python/src/SignatureRequestCreateEmbeddedGroupedSignersExample.py
@@ -48,10 +48,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
grouped_signers_1 = models.SubSignatureRequestGroupedSigners(
group="Group #1",
order=0,
@@ -83,7 +79,6 @@
"lawyer2@dropboxsign.com",
],
signing_options=signing_options,
- signer_experience=signer_experience,
grouped_signers=grouped_signers,
)
diff --git a/sandbox/python/src/SignatureRequestCreateEmbeddedWithTemplateExample.py b/sandbox/python/src/SignatureRequestCreateEmbeddedWithTemplateExample.py
index ecb367eca..885a24811 100644
--- a/sandbox/python/src/SignatureRequestCreateEmbeddedWithTemplateExample.py
+++ b/sandbox/python/src/SignatureRequestCreateEmbeddedWithTemplateExample.py
@@ -19,10 +19,6 @@
force_advanced_signature_details=False,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestTemplateSigner(
role="Client",
name="George",
@@ -42,7 +38,6 @@
subject="Purchase Order",
test_mode=True,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/sandbox/python/src/SignatureRequestEditEmbeddedExample.py b/sandbox/python/src/SignatureRequestEditEmbeddedExample.py
index 662b716d1..e3e5f1a87 100644
--- a/sandbox/python/src/SignatureRequestEditEmbeddedExample.py
+++ b/sandbox/python/src/SignatureRequestEditEmbeddedExample.py
@@ -18,10 +18,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -53,7 +49,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/sandbox/python/src/SignatureRequestEditEmbeddedGroupedSignersExample.py b/sandbox/python/src/SignatureRequestEditEmbeddedGroupedSignersExample.py
index 5351ba105..9c26905c3 100644
--- a/sandbox/python/src/SignatureRequestEditEmbeddedGroupedSignersExample.py
+++ b/sandbox/python/src/SignatureRequestEditEmbeddedGroupedSignersExample.py
@@ -48,10 +48,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
grouped_signers_1 = models.SubSignatureRequestGroupedSigners(
group="Group #1",
order=0,
@@ -83,7 +79,6 @@
"lawyer2@dropboxsign.com",
],
signing_options=signing_options,
- signer_experience=signer_experience,
grouped_signers=grouped_signers,
)
diff --git a/sandbox/python/src/SignatureRequestEditEmbeddedWithTemplateExample.py b/sandbox/python/src/SignatureRequestEditEmbeddedWithTemplateExample.py
index dad13e3ff..92f0378ef 100644
--- a/sandbox/python/src/SignatureRequestEditEmbeddedWithTemplateExample.py
+++ b/sandbox/python/src/SignatureRequestEditEmbeddedWithTemplateExample.py
@@ -18,10 +18,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestTemplateSigner(
role="Client",
name="George",
@@ -41,7 +37,6 @@
subject="Purchase Order",
test_mode=True,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/sandbox/python/src/SignatureRequestEditExample.py b/sandbox/python/src/SignatureRequestEditExample.py
index 1a1632a26..4c6fc1e74 100644
--- a/sandbox/python/src/SignatureRequestEditExample.py
+++ b/sandbox/python/src/SignatureRequestEditExample.py
@@ -22,10 +22,6 @@
upload=True,
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signers_1 = models.SubSignatureRequestSigner(
name="Jack",
email_address="jack@example.com",
@@ -63,7 +59,6 @@
"""),
field_options=field_options,
signing_options=signing_options,
- signer_experience=signer_experience,
signers=signers,
)
diff --git a/sandbox/python/src/TemplateCreateExample.py b/sandbox/python/src/TemplateCreateExample.py
index 29ea47bb7..a6ed3611e 100644
--- a/sandbox/python/src/TemplateCreateExample.py
+++ b/sandbox/python/src/TemplateCreateExample.py
@@ -14,10 +14,6 @@
date_format="DD - MM - YYYY",
)
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
signer_roles_1 = models.SubTemplateRole(
name="Client",
order=0,
@@ -96,7 +92,6 @@
open("./example_signature_request.pdf", "rb").read(),
],
field_options=field_options,
- signer_experience=signer_experience,
signer_roles=signer_roles,
form_fields_per_document=form_fields_per_document,
merge_fields=merge_fields,
diff --git a/sandbox/python/src/TemplateUpdateExample.py b/sandbox/python/src/TemplateUpdateExample.py
index 46d2d7f74..39e767acb 100644
--- a/sandbox/python/src/TemplateUpdateExample.py
+++ b/sandbox/python/src/TemplateUpdateExample.py
@@ -10,10 +10,6 @@
)
with ApiClient(configuration) as api_client:
- signer_experience = models.SubSignerExperience(
- form_view="disabled",
- )
-
form_fields_1 = models.SubUpdateFormField(
api_id="uniqueIdHere_1",
name="New name 1",
@@ -37,7 +33,6 @@
"CC Role 1",
"CC Role 2",
],
- signer_experience=signer_experience,
form_fields=form_fields,
)
diff --git a/sandbox/ruby/src/SignatureRequestCreateEmbeddedExample.rb b/sandbox/ruby/src/SignatureRequestCreateEmbeddedExample.rb
index 6252a09c4..3b33e2f80 100644
--- a/sandbox/ruby/src/SignatureRequestCreateEmbeddedExample.rb
+++ b/sandbox/ruby/src/SignatureRequestCreateEmbeddedExample.rb
@@ -14,9 +14,6 @@
signing_options.upload = true
signing_options.force_advanced_signature_details = false
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -46,7 +43,6 @@
File.new("./example_signature_request.pdf", "r"),
]
signature_request_create_embedded_request.signing_options = signing_options
-signature_request_create_embedded_request.signer_experience = signer_experience
signature_request_create_embedded_request.signers = signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestCreateEmbeddedGroupedSignersExample.rb b/sandbox/ruby/src/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
index c936052fc..9910ee894 100644
--- a/sandbox/ruby/src/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
+++ b/sandbox/ruby/src/SignatureRequestCreateEmbeddedGroupedSignersExample.rb
@@ -39,9 +39,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
grouped_signers_1 = Dropbox::Sign::SubSignatureRequestGroupedSigners.new
grouped_signers_1.group = "Group #1"
grouped_signers_1.order = 0
@@ -71,7 +68,6 @@
"lawyer2@dropboxsign.com",
]
signature_request_create_embedded_request.signing_options = signing_options
-signature_request_create_embedded_request.signer_experience = signer_experience
signature_request_create_embedded_request.grouped_signers = grouped_signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestCreateEmbeddedWithTemplateExample.rb b/sandbox/ruby/src/SignatureRequestCreateEmbeddedWithTemplateExample.rb
index 5f37d4834..18d1d8be4 100644
--- a/sandbox/ruby/src/SignatureRequestCreateEmbeddedWithTemplateExample.rb
+++ b/sandbox/ruby/src/SignatureRequestCreateEmbeddedWithTemplateExample.rb
@@ -14,9 +14,6 @@
signing_options.upload = true
signing_options.force_advanced_signature_details = false
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
signers_1.role = "Client"
signers_1.name = "George"
@@ -35,7 +32,6 @@
signature_request_create_embedded_with_template_request.subject = "Purchase Order"
signature_request_create_embedded_with_template_request.test_mode = true
signature_request_create_embedded_with_template_request.signing_options = signing_options
-signature_request_create_embedded_with_template_request.signer_experience = signer_experience
signature_request_create_embedded_with_template_request.signers = signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestEditEmbeddedExample.rb b/sandbox/ruby/src/SignatureRequestEditEmbeddedExample.rb
index 52bb7dcab..0e192377c 100644
--- a/sandbox/ruby/src/SignatureRequestEditEmbeddedExample.rb
+++ b/sandbox/ruby/src/SignatureRequestEditEmbeddedExample.rb
@@ -13,9 +13,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -45,7 +42,6 @@
File.new("./example_signature_request.pdf", "r"),
]
signature_request_edit_embedded_request.signing_options = signing_options
-signature_request_edit_embedded_request.signer_experience = signer_experience
signature_request_edit_embedded_request.signers = signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestEditEmbeddedGroupedSignersExample.rb b/sandbox/ruby/src/SignatureRequestEditEmbeddedGroupedSignersExample.rb
index 91096eb64..0fc7bc7a3 100644
--- a/sandbox/ruby/src/SignatureRequestEditEmbeddedGroupedSignersExample.rb
+++ b/sandbox/ruby/src/SignatureRequestEditEmbeddedGroupedSignersExample.rb
@@ -39,9 +39,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
grouped_signers_1 = Dropbox::Sign::SubSignatureRequestGroupedSigners.new
grouped_signers_1.group = "Group #1"
grouped_signers_1.order = 0
@@ -71,7 +68,6 @@
"lawyer2@dropboxsign.com",
]
signature_request_edit_embedded_request.signing_options = signing_options
-signature_request_edit_embedded_request.signer_experience = signer_experience
signature_request_edit_embedded_request.grouped_signers = grouped_signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestEditEmbeddedWithTemplateExample.rb b/sandbox/ruby/src/SignatureRequestEditEmbeddedWithTemplateExample.rb
index 7d15ff59b..f504f1944 100644
--- a/sandbox/ruby/src/SignatureRequestEditEmbeddedWithTemplateExample.rb
+++ b/sandbox/ruby/src/SignatureRequestEditEmbeddedWithTemplateExample.rb
@@ -13,9 +13,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
signers_1.role = "Client"
signers_1.name = "George"
@@ -34,7 +31,6 @@
signature_request_edit_embedded_with_template_request.subject = "Purchase Order"
signature_request_edit_embedded_with_template_request.test_mode = true
signature_request_edit_embedded_with_template_request.signing_options = signing_options
-signature_request_edit_embedded_with_template_request.signer_experience = signer_experience
signature_request_edit_embedded_with_template_request.signers = signers
begin
diff --git a/sandbox/ruby/src/SignatureRequestEditExample.rb b/sandbox/ruby/src/SignatureRequestEditExample.rb
index a4bc0f315..e55d7beee 100644
--- a/sandbox/ruby/src/SignatureRequestEditExample.rb
+++ b/sandbox/ruby/src/SignatureRequestEditExample.rb
@@ -16,9 +16,6 @@
signing_options.type = true
signing_options.upload = true
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
signers_1.name = "Jack"
signers_1.email_address = "jack@example.com"
@@ -55,7 +52,6 @@
)
signature_request_edit_request.field_options = field_options
signature_request_edit_request.signing_options = signing_options
-signature_request_edit_request.signer_experience = signer_experience
signature_request_edit_request.signers = signers
begin
diff --git a/sandbox/ruby/src/TemplateCreateExample.rb b/sandbox/ruby/src/TemplateCreateExample.rb
index d7b5c992b..f4d623397 100644
--- a/sandbox/ruby/src/TemplateCreateExample.rb
+++ b/sandbox/ruby/src/TemplateCreateExample.rb
@@ -9,9 +9,6 @@
field_options = Dropbox::Sign::SubFieldOptions.new
field_options.date_format = "DD - MM - YYYY"
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
signer_roles_1 = Dropbox::Sign::SubTemplateRole.new
signer_roles_1.name = "Client"
signer_roles_1.order = 0
@@ -84,7 +81,6 @@
File.new("./example_signature_request.pdf", "r"),
]
template_create_request.field_options = field_options
-template_create_request.signer_experience = signer_experience
template_create_request.signer_roles = signer_roles
template_create_request.form_fields_per_document = form_fields_per_document
template_create_request.merge_fields = merge_fields
diff --git a/sandbox/ruby/src/TemplateUpdateExample.rb b/sandbox/ruby/src/TemplateUpdateExample.rb
index 0642637f6..e0332ea8f 100644
--- a/sandbox/ruby/src/TemplateUpdateExample.rb
+++ b/sandbox/ruby/src/TemplateUpdateExample.rb
@@ -6,9 +6,6 @@
# config.access_token = "YOUR_ACCESS_TOKEN"
end
-signer_experience = Dropbox::Sign::SubSignerExperience.new
-signer_experience.form_view = "disabled"
-
form_fields_1 = Dropbox::Sign::SubUpdateFormField.new
form_fields_1.api_id = "uniqueIdHere_1"
form_fields_1.name = "New name 1"
@@ -30,7 +27,6 @@
"CC Role 1",
"CC Role 2",
]
-template_update_request.signer_experience = signer_experience
template_update_request.form_fields = form_fields
begin
diff --git a/sdks/dotnet/README.md b/sdks/dotnet/README.md
index a5b79ae48..e28d59357 100644
--- a/sdks/dotnet/README.md
+++ b/sdks/dotnet/README.md
@@ -333,7 +333,6 @@ Class | Method | HTTP request | Description
- [Model.SubSignatureRequestGroupedSigners](docs/SubSignatureRequestGroupedSigners.md)
- [Model.SubSignatureRequestSigner](docs/SubSignatureRequestSigner.md)
- [Model.SubSignatureRequestTemplateSigner](docs/SubSignatureRequestTemplateSigner.md)
- - [Model.SubSignerExperience](docs/SubSignerExperience.md)
- [Model.SubSigningOptions](docs/SubSigningOptions.md)
- [Model.SubTeamResponse](docs/SubTeamResponse.md)
- [Model.SubTemplateRole](docs/SubTemplateRole.md)
diff --git a/sdks/dotnet/docs/EmbeddedEditUrlRequest.md b/sdks/dotnet/docs/EmbeddedEditUrlRequest.md
index 94801e1a6..43b4c3e10 100644
--- a/sdks/dotnet/docs/EmbeddedEditUrlRequest.md
+++ b/sdks/dotnet/docs/EmbeddedEditUrlRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**AllowEditCcs** | **bool** | This allows the requester to enable/disable to add or change CC roles when editing the template. | [optional] [default to false]**CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request. | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add additional merge fields to the template, which can be used used to pre-fill data by passing values into signature requests made with that template.
Remove all merge fields on the template by passing an empty array `[]`. | [optional] **PreviewOnly** | **bool** | This allows the requester to enable the preview experience (i.e. does not allow the requester's end user to add any additional fields via the editor).
**NOTE:** This parameter overwrites `show_preview=true` (if set). | [optional] [default to false]**ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**TestMode** | **bool** | Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`. | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**AllowEditCcs** | **bool** | This allows the requester to enable/disable to add or change CC roles when editing the template. | [optional] [default to false]**CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request. | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add additional merge fields to the template, which can be used used to pre-fill data by passing values into signature requests made with that template.
Remove all merge fields on the template by passing an empty array `[]`. | [optional] **PreviewOnly** | **bool** | This allows the requester to enable the preview experience (i.e. does not allow the requester's end user to add any additional fields via the editor).
**NOTE:** This parameter overwrites `show_preview=true` (if set). | [optional] [default to false]**ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**TestMode** | **bool** | Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`. | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestCreateEmbeddedRequest.md b/sdks/dotnet/docs/SignatureRequestCreateEmbeddedRequest.md
index e80c727c4..babeb4eb2 100644
--- a/sdks/dotnet/docs/SignatureRequestCreateEmbeddedRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestCreateEmbeddedRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional] **ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional]
+**ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestCreateEmbeddedWithTemplateRequest.md b/sdks/dotnet/docs/SignatureRequestCreateEmbeddedWithTemplateRequest.md
index 29272902f..61bab9b3a 100644
--- a/sdks/dotnet/docs/SignatureRequestCreateEmbeddedWithTemplateRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestCreateEmbeddedWithTemplateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestEditEmbeddedRequest.md b/sdks/dotnet/docs/SignatureRequestEditEmbeddedRequest.md
index bd5d898af..3d7e41773 100644
--- a/sdks/dotnet/docs/SignatureRequestEditEmbeddedRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestEditEmbeddedRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestEditEmbeddedWithTemplateRequest.md b/sdks/dotnet/docs/SignatureRequestEditEmbeddedWithTemplateRequest.md
index 18da50568..8be8d1b17 100644
--- a/sdks/dotnet/docs/SignatureRequestEditEmbeddedWithTemplateRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestEditEmbeddedWithTemplateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **ClientId** | **string** | Client id of the app you're using to create this embedded signature request. Used for security purposes. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **PopulateAutoFillFields** | **bool** | Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing.
**NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestEditRequest.md b/sdks/dotnet/docs/SignatureRequestEditRequest.md
index 3c475f72a..bb50808de 100644
--- a/sdks/dotnet/docs/SignatureRequestEditRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestEditRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | The client id of the API App you want to associate with this request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | The client id of the API App you want to associate with this request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestEditWithTemplateRequest.md b/sdks/dotnet/docs/SignatureRequestEditWithTemplateRequest.md
index 7e792c59d..1da1fa150 100644
--- a/sdks/dotnet/docs/SignatureRequestEditWithTemplateRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestEditWithTemplateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **ClientId** | **string** | Client id of the app to associate with the signature request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **ClientId** | **string** | Client id of the app to associate with the signature request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestSendRequest.md b/sdks/dotnet/docs/SignatureRequestSendRequest.md
index 3c84ddeda..5261aeb91 100644
--- a/sdks/dotnet/docs/SignatureRequestSendRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestSendRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | The client id of the API App you want to associate with this request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**IsQualifiedSignature** | **bool** | Send with a value of `true` if you wish to enable [Qualified Electronic Signatures](https://www.hellosign.com/features/qualified-electronic-signatures) (QES), which requires a face-to-face call to verify the signer's identity.<br>
**NOTE:** QES is only available on the Premium API plan as an add-on purchase. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **Signers** | [**List<SubSignatureRequestSigner>**](SubSignatureRequestSigner.md) | Add Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **GroupedSigners** | [**List<SubSignatureRequestGroupedSigners>**](SubSignatureRequestGroupedSigners.md) | Add Grouped Signers to your Signature Request.
This endpoint requires either **signers** or **grouped_signers**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | The client id of the API App you want to associate with this request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Enables automatic Text Tag removal when set to true.
**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [optional] [default to false]**IsQualifiedSignature** | **bool** | Send with a value of `true` if you wish to enable [Qualified Electronic Signatures](https://www.hellosign.com/features/qualified-electronic-signatures) (QES), which requires a face-to-face call to verify the signer's identity.<br>
**NOTE:** QES is only available on the Premium API plan as an add-on purchase. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UseTextTags** | **bool** | Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SignatureRequestSendWithTemplateRequest.md b/sdks/dotnet/docs/SignatureRequestSendWithTemplateRequest.md
index 913ff5620..89bbdcc3a 100644
--- a/sdks/dotnet/docs/SignatureRequestSendWithTemplateRequest.md
+++ b/sdks/dotnet/docs/SignatureRequestSendWithTemplateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **ClientId** | **string** | Client id of the app to associate with the signature request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **IsQualifiedSignature** | **bool** | Send with a value of `true` if you wish to enable [Qualified Electronic Signatures](https://www.hellosign.com/features/qualified-electronic-signatures) (QES), which requires a face-to-face call to verify the signer's identity.<br>
**NOTE:** QES is only available on the Premium API plan as an add-on purchase. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**TemplateIds** | **List<string>** | Use `template_ids` to create a SignatureRequest from one or more templates, in the order in which the template will be used. | **Signers** | [**List<SubSignatureRequestTemplateSigner>**](SubSignatureRequestTemplateSigner.md) | Add Signers to your Templated-based Signature Request. | **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Ccs** | [**List<SubCC>**](SubCC.md) | Add CC email recipients. Required when a CC role exists for the Template. | [optional] **ClientId** | **string** | Client id of the app to associate with the signature request. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | [optional] **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **IsQualifiedSignature** | **bool** | Send with a value of `true` if you wish to enable [Qualified Electronic Signatures](https://www.hellosign.com/features/qualified-electronic-signatures) (QES), which requires a face-to-face call to verify the signer's identity.<br>
**NOTE:** QES is only available on the Premium API plan as an add-on purchase. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**IsEid** | **bool** | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.<br>
**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/SubSignerExperience.md b/sdks/dotnet/docs/SubSignerExperience.md
deleted file mode 100644
index e9b7af925..000000000
--- a/sdks/dotnet/docs/SubSignerExperience.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Dropbox.Sign.Model.SubSignerExperience
-Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**FormView** | **string** | Changes the form view setting experienced by the signer. Supported versions are: - `disabled` - Form view is disabled, and the signer cannot change it - `enabled` - Form view is disabled initially, the signer can turn it on using a toggle - `enabled_by_default` - Form view is enabled initially. The signer car turn it off using a toggle - `forced` - Form view is enabled initially. The signer cannot change it, the toggle is hidden. | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/sdks/dotnet/docs/TemplateCreateEmbeddedDraftRequest.md b/sdks/dotnet/docs/TemplateCreateEmbeddedDraftRequest.md
index 34cf9ddd9..299d6feef 100644
--- a/sdks/dotnet/docs/TemplateCreateEmbeddedDraftRequest.md
+++ b/sdks/dotnet/docs/TemplateCreateEmbeddedDraftRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**ClientId** | **string** | Client id of the app you're using to create this draft. Used to apply the branding and callback url defined for the app. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowCcs** | **bool** | This allows the requester to specify whether the user is allowed to provide email addresses to CC when creating a template. | [optional] [default to true]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add merge fields to the template. Merge fields are placed by the user creating the template and used to pre-fill data by passing values into signature requests with the `custom_fields` parameter. If the signature request using that template *does not* pass a value into a merge field, then an empty field remains in the document. | [optional] **Message** | **string** | The default template email message. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience.
- `show_preview=true`: Allows requesters to enable the editor/preview experience. - `show_preview=false`: Allows requesters to disable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**SignerRoles** | [**List<SubTemplateRole>**](SubTemplateRole.md) | An array of the designated signer roles that must be specified when sending a SignatureRequest using this Template. | [optional] **SkipMeNow** | **bool** | Disables the "Me (Now)" option for the person preparing the document. Does not work with type `send_document`. Defaults to `false`. | [optional] [default to false]**Subject** | **string** | The template title (alias). | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UsePreexistingFields** | **bool** | Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**ClientId** | **string** | Client id of the app you're using to create this draft. Used to apply the branding and callback url defined for the app. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowCcs** | **bool** | This allows the requester to specify whether the user is allowed to provide email addresses to CC when creating a template. | [optional] [default to true]**AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add merge fields to the template. Merge fields are placed by the user creating the template and used to pre-fill data by passing values into signature requests with the `custom_fields` parameter. If the signature request using that template *does not* pass a value into a merge field, then an empty field remains in the document. | [optional] **Message** | **string** | The default template email message. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience.
- `show_preview=true`: Allows requesters to enable the editor/preview experience. - `show_preview=false`: Allows requesters to disable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**SignerRoles** | [**List<SubTemplateRole>**](SubTemplateRole.md) | An array of the designated signer roles that must be specified when sending a SignatureRequest using this Template. | [optional] **SkipMeNow** | **bool** | Disables the "Me (Now)" option for the person preparing the document. Does not work with type `send_document`. Defaults to `false`. | [optional] [default to false]**Subject** | **string** | The template title (alias). | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UsePreexistingFields** | **bool** | Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/TemplateCreateRequest.md b/sdks/dotnet/docs/TemplateCreateRequest.md
index 1129b47bc..9a80d0c9a 100644
--- a/sdks/dotnet/docs/TemplateCreateRequest.md
+++ b/sdks/dotnet/docs/TemplateCreateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | **SignerRoles** | [**List<SubTemplateRole>**](SubTemplateRole.md) | An array of the designated signer roles that must be specified when sending a SignatureRequest using this Template. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request | [optional] **ClientId** | **string** | Client id of the app you're using to create this draft. Used to apply the branding and callback url defined for the app. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add merge fields to the template. Merge fields are placed by the user creating the template and used to pre-fill data by passing values into signature requests with the `custom_fields` parameter. If the signature request using that template *does not* pass a value into a merge field, then an empty field remains in the document. | [optional] **Message** | **string** | The default template email message. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **Subject** | **string** | The template title (alias). | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UsePreexistingFields** | **bool** | Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). | [optional] [default to false]**SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | **SignerRoles** | [**List<SubTemplateRole>**](SubTemplateRole.md) | An array of the designated signer roles that must be specified when sending a SignatureRequest using this Template. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowReassign** | **bool** | Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
**NOTE:** Only available for Premium plan and higher. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request | [optional] **ClientId** | **string** | Client id of the app you're using to create this draft. Used to apply the branding and callback url defined for the app. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **MergeFields** | [**List<SubMergeField>**](SubMergeField.md) | Add merge fields to the template. Merge fields are placed by the user creating the template and used to pre-fill data by passing values into signature requests with the `custom_fields` parameter. If the signature request using that template *does not* pass a value into a merge field, then an empty field remains in the document. | [optional] **Message** | **string** | The default template email message. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **Subject** | **string** | The template title (alias). | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **UsePreexistingFields** | **bool** | Enable the detection of predefined PDF fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/TemplateUpdateRequest.md b/sdks/dotnet/docs/TemplateUpdateRequest.md
index 4951f1e0e..53c22607d 100644
--- a/sdks/dotnet/docs/TemplateUpdateRequest.md
+++ b/sdks/dotnet/docs/TemplateUpdateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request. | [optional] **Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **Subject** | **string** | The new default template email subject. | [optional] **Message** | **string** | The new default template email message. | [optional] **FormFields** | [**List<SubUpdateFormField>**](SubUpdateFormField.md) | A list of document form fields to update. The endpoint will not create or remove any fields. Every field must be identified by `api_id`, and the only supported change is renaming the field. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**CcRoles** | **List<string>** | The CC roles that must be assigned when using the template to send a signature request. | [optional] **Title** | **string** | The title you want to assign to the SignatureRequest. | [optional] **Subject** | **string** | The new default template email subject. | [optional] **Message** | **string** | The new default template email message. | [optional] **FormFields** | [**List<SubUpdateFormField>**](SubUpdateFormField.md) | A list of document form fields to update. The endpoint will not create or remove any fields. Every field must be identified by `api_id`, and the only supported change is renaming the field. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/docs/UnclaimedDraftCreateRequest.md b/sdks/dotnet/docs/UnclaimedDraftCreateRequest.md
index e270e0a70..462e91456 100644
--- a/sdks/dotnet/docs/UnclaimedDraftCreateRequest.md
+++ b/sdks/dotnet/docs/UnclaimedDraftCreateRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**Type** | **string** | The type of unclaimed draft to create. Use `send_document` to create a claimable file, and `request_signature` for a claimable signature request. If the type is `request_signature` then signers name and email_address are not optional. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | Client id of the app used to create the draft. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Send with a value of `true` if you wish to enable automatic Text Tag removal. Defaults to `false`. When using Text Tags it is preferred that you set this to `false` and hide your tags with white text or something similar because the automatic removal system can cause unwanted clipping. See the [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) walkthrough for more details. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**Signers** | [**List<SubUnclaimedDraftSigner>**](SubUnclaimedDraftSigner.md) | Add Signers to your Unclaimed Draft Signature Request. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**UsePreexistingFields** | **bool** | Set `use_text_tags` to `true` to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document (defaults to disabled, or `false`). Alternatively, if your PDF contains pre-defined fields, enable the detection of these fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). Currently we only support use of either `use_text_tags` or `use_preexisting_fields` parameter, not both. | [optional] [default to false]**UseTextTags** | **bool** | Set `use_text_tags` to `true` to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document (defaults to disabled, or `false`). Alternatively, if your PDF contains pre-defined fields, enable the detection of these fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). Currently we only support use of either `use_text_tags` or `use_preexisting_fields` parameter, not both. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.
**NOTE:** This does not correspond to the **expires_at** returned in the response. | [optional] **SignerExperience** | [**SubSignerExperience**](SubSignerExperience.md) | | [optional]
+**Type** | **string** | The type of unclaimed draft to create. Use `send_document` to create a claimable file, and `request_signature` for a claimable signature request. If the type is `request_signature` then signers name and email_address are not optional. | **Files** | **List<System.IO.Stream>** | Use `files[]` to indicate the uploaded file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **FileUrls** | **List<string>** | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.
This endpoint requires either **files** or **file_urls[]**, but not both. | [optional] **AllowDecline** | **bool** | Allows signers to decline to sign a document if `true`. Defaults to `false`. | [optional] [default to false]**Attachments** | [**List<SubAttachment>**](SubAttachment.md) | A list describing the attachments | [optional] **CcEmailAddresses** | **List<string>** | The email addresses that should be CCed. | [optional] **ClientId** | **string** | Client id of the app used to create the draft. Used to apply the branding and callback url defined for the app. | [optional] **CustomFields** | [**List<SubCustomField>**](SubCustomField.md) | When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests.
Pre-filled data can be used with "send-once" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call.
For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template. | [optional] **FieldOptions** | [**SubFieldOptions**](SubFieldOptions.md) | | [optional] **FormFieldGroups** | [**List<SubFormFieldGroup>**](SubFormFieldGroup.md) | Group information for fields defined in `form_fields_per_document`. String-indexed JSON array with `group_label` and `requirement` keys. `form_fields_per_document` must contain fields referencing a group defined in `form_field_groups`. | [optional] **FormFieldRules** | [**List<SubFormFieldRule>**](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | [optional] **FormFieldsPerDocument** | [**List<SubFormFieldsPerDocumentBase>**](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)
**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.
* Text Field use `SubFormFieldsPerDocumentText`
* Dropdown Field use `SubFormFieldsPerDocumentDropdown`
* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`
* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`
* Radio Field use `SubFormFieldsPerDocumentRadio`
* Signature Field use `SubFormFieldsPerDocumentSignature`
* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`
* Initials Field use `SubFormFieldsPerDocumentInitials`
* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`
* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | [optional] **HideTextTags** | **bool** | Send with a value of `true` if you wish to enable automatic Text Tag removal. Defaults to `false`. When using Text Tags it is preferred that you set this to `false` and hide your tags with white text or something similar because the automatic removal system can cause unwanted clipping. See the [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) walkthrough for more details. | [optional] [default to false]**Message** | **string** | The custom message in the email that will be sent to the signers. | [optional] **Metadata** | **Dictionary<string, Object>** | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer's order number for look up when receiving events for the signature request.
Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | [optional] **ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**Signers** | [**List<SubUnclaimedDraftSigner>**](SubUnclaimedDraftSigner.md) | Add Signers to your Unclaimed Draft Signature Request. | [optional] **SigningOptions** | [**SubSigningOptions**](SubSigningOptions.md) | | [optional] **SigningRedirectUrl** | **string** | The URL you want signers redirected to after they successfully sign. | [optional] **Subject** | **string** | The subject in the email that will be sent to the signers. | [optional] **TestMode** | **bool** | Whether this is a test, the signature request created from this draft will not be legally binding if set to `true`. Defaults to `false`. | [optional] [default to false]**UsePreexistingFields** | **bool** | Set `use_text_tags` to `true` to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document (defaults to disabled, or `false`). Alternatively, if your PDF contains pre-defined fields, enable the detection of these fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). Currently we only support use of either `use_text_tags` or `use_preexisting_fields` parameter, not both. | [optional] [default to false]**UseTextTags** | **bool** | Set `use_text_tags` to `true` to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document (defaults to disabled, or `false`). Alternatively, if your PDF contains pre-defined fields, enable the detection of these fields by setting the `use_preexisting_fields` to `true` (defaults to disabled, or `false`). Currently we only support use of either `use_text_tags` or `use_preexisting_fields` parameter, not both. | [optional] [default to false]**ExpiresAt** | **int?** | When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.
**NOTE:** This does not correspond to the **expires_at** returned in the response. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/EmbeddedEditUrlRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/EmbeddedEditUrlRequest.cs
index 96a7b5316..eef4ec729 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/EmbeddedEditUrlRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/EmbeddedEditUrlRequest.cs
@@ -51,8 +51,7 @@ protected EmbeddedEditUrlRequest() { }
/// This allows the requester to enable the editor/preview experience. (default to false).
/// When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. (default to true).
/// Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`. (default to false).
- /// signerExperience.
- public EmbeddedEditUrlRequest(bool allowEditCcs = false, List ccRoles = default(List), SubEditorOptions editorOptions = default(SubEditorOptions), bool forceSignerRoles = false, bool forceSubjectMessage = false, List mergeFields = default(List), bool previewOnly = false, bool showPreview = false, bool showProgressStepper = true, bool testMode = false, SubSignerExperience signerExperience = default(SubSignerExperience))
+ public EmbeddedEditUrlRequest(bool allowEditCcs = false, List ccRoles = default(List), SubEditorOptions editorOptions = default(SubEditorOptions), bool forceSignerRoles = false, bool forceSubjectMessage = false, List mergeFields = default(List), bool previewOnly = false, bool showPreview = false, bool showProgressStepper = true, bool testMode = false)
{
this.AllowEditCcs = allowEditCcs;
@@ -65,7 +64,6 @@ protected EmbeddedEditUrlRequest() { }
this.ShowPreview = showPreview;
this.ShowProgressStepper = showProgressStepper;
this.TestMode = testMode;
- this.SignerExperience = signerExperience;
}
///
@@ -153,12 +151,6 @@ public static EmbeddedEditUrlRequest Init(string jsonData)
[DataMember(Name = "test_mode", EmitDefaultValue = true)]
public bool TestMode { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -177,7 +169,6 @@ public override string ToString()
sb.Append(" ShowPreview: ").Append(ShowPreview).Append("\n");
sb.Append(" ShowProgressStepper: ").Append(ShowProgressStepper).Append("\n");
sb.Append(" TestMode: ").Append(TestMode).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -257,11 +248,6 @@ public bool Equals(EmbeddedEditUrlRequest input)
(
this.TestMode == input.TestMode ||
this.TestMode.Equals(input.TestMode)
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -293,10 +279,6 @@ public override int GetHashCode()
hashCode = (hashCode * 59) + this.ShowPreview.GetHashCode();
hashCode = (hashCode * 59) + this.ShowProgressStepper.GetHashCode();
hashCode = (hashCode * 59) + this.TestMode.GetHashCode();
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -383,13 +365,6 @@ public List GetOpenApiTypes()
Type = "bool",
Value = TestMode,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/ReportCreateRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/ReportCreateRequest.cs
index 8ae648930..010db6e9b 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/ReportCreateRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/ReportCreateRequest.cs
@@ -55,7 +55,13 @@ public enum ReportTypeEnum
/// Enum SmsActivity for value: sms_activity
///
[EnumMember(Value = "sms_activity")]
- SmsActivity = 3
+ SmsActivity = 3,
+
+ ///
+ /// Enum FaxUsage for value: fax_usage
+ ///
+ [EnumMember(Value = "fax_usage")]
+ FaxUsage = 4
}
///
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/ReportResponse.cs b/sdks/dotnet/src/Dropbox.Sign/Model/ReportResponse.cs
index bd63ab7fa..5ec9d9690 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/ReportResponse.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/ReportResponse.cs
@@ -55,7 +55,13 @@ public enum ReportTypeEnum
/// Enum SmsActivity for value: sms_activity
///
[EnumMember(Value = "sms_activity")]
- SmsActivity = 3
+ SmsActivity = 3,
+
+ ///
+ /// Enum FaxUsage for value: fax_usage
+ ///
+ [EnumMember(Value = "fax_usage")]
+ FaxUsage = 4
}
///
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedRequest.cs
index 8248c671e..310802209 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedRequest.cs
@@ -64,9 +64,8 @@ protected SignatureRequestCreateEmbeddedRequest() { }
/// The title you want to assign to the SignatureRequest..
/// Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. (default to false).
/// Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing. **NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. (default to false).
- /// signerExperience.
/// When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details..
- public SignatureRequestCreateEmbeddedRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, bool populateAutoFillFields = false, SubSignerExperience signerExperience = default(SubSignerExperience), int? expiresAt = default(int?))
+ public SignatureRequestCreateEmbeddedRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, bool populateAutoFillFields = false, int? expiresAt = default(int?))
{
// to ensure "clientId" is required (not null)
@@ -97,7 +96,6 @@ protected SignatureRequestCreateEmbeddedRequest() { }
this.Title = title;
this.UseTextTags = useTextTags;
this.PopulateAutoFillFields = populateAutoFillFields;
- this.SignerExperience = signerExperience;
this.ExpiresAt = expiresAt;
}
@@ -276,12 +274,6 @@ public static SignatureRequestCreateEmbeddedRequest Init(string jsonData)
[DataMember(Name = "populate_auto_fill_fields", EmitDefaultValue = true)]
public bool PopulateAutoFillFields { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.
///
@@ -320,7 +312,6 @@ public override string ToString()
sb.Append(" Title: ").Append(Title).Append("\n");
sb.Append(" UseTextTags: ").Append(UseTextTags).Append("\n");
sb.Append(" PopulateAutoFillFields: ").Append(PopulateAutoFillFields).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append(" ExpiresAt: ").Append(ExpiresAt).Append("\n");
sb.Append("}\n");
return sb.ToString();
@@ -477,11 +468,6 @@ public bool Equals(SignatureRequestCreateEmbeddedRequest input)
this.PopulateAutoFillFields == input.PopulateAutoFillFields ||
this.PopulateAutoFillFields.Equals(input.PopulateAutoFillFields)
) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
- ) &&
(
this.ExpiresAt == input.ExpiresAt ||
(this.ExpiresAt != null &&
@@ -572,10 +558,6 @@ public override int GetHashCode()
}
hashCode = (hashCode * 59) + this.UseTextTags.GetHashCode();
hashCode = (hashCode * 59) + this.PopulateAutoFillFields.GetHashCode();
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
if (this.ExpiresAt != null)
{
hashCode = (hashCode * 59) + this.ExpiresAt.GetHashCode();
@@ -776,13 +758,6 @@ public List GetOpenApiTypes()
Value = PopulateAutoFillFields,
});
types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
- types.Add(new OpenApiType()
{
Name = "expires_at",
Property = "ExpiresAt",
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.cs
index 6d00faf43..b0296ffdb 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.cs
@@ -56,8 +56,7 @@ protected SignatureRequestCreateEmbeddedWithTemplateRequest() { }
/// Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. (default to false).
/// The title you want to assign to the SignatureRequest..
/// Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing. **NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. (default to false).
- /// signerExperience.
- public SignatureRequestCreateEmbeddedWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool populateAutoFillFields = false, SubSignerExperience signerExperience = default(SubSignerExperience))
+ public SignatureRequestCreateEmbeddedWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool populateAutoFillFields = false)
{
// to ensure "templateIds" is required (not null)
@@ -90,7 +89,6 @@ protected SignatureRequestCreateEmbeddedWithTemplateRequest() { }
this.TestMode = testMode;
this.Title = title;
this.PopulateAutoFillFields = populateAutoFillFields;
- this.SignerExperience = signerExperience;
}
///
@@ -213,12 +211,6 @@ public static SignatureRequestCreateEmbeddedWithTemplateRequest Init(string json
[DataMember(Name = "populate_auto_fill_fields", EmitDefaultValue = true)]
public bool PopulateAutoFillFields { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -242,7 +234,6 @@ public override string ToString()
sb.Append(" TestMode: ").Append(TestMode).Append("\n");
sb.Append(" Title: ").Append(Title).Append("\n");
sb.Append(" PopulateAutoFillFields: ").Append(PopulateAutoFillFields).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -356,11 +347,6 @@ public bool Equals(SignatureRequestCreateEmbeddedWithTemplateRequest input)
(
this.PopulateAutoFillFields == input.PopulateAutoFillFields ||
this.PopulateAutoFillFields.Equals(input.PopulateAutoFillFields)
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -424,10 +410,6 @@ public override int GetHashCode()
hashCode = (hashCode * 59) + this.Title.GetHashCode();
}
hashCode = (hashCode * 59) + this.PopulateAutoFillFields.GetHashCode();
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -567,13 +549,6 @@ public List GetOpenApiTypes()
Type = "bool",
Value = PopulateAutoFillFields,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedRequest.cs
index 958a237ff..68a03290b 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedRequest.cs
@@ -65,8 +65,7 @@ protected SignatureRequestEditEmbeddedRequest() { }
/// Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. (default to false).
/// Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing. **NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. (default to false).
/// When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details..
- /// signerExperience.
- public SignatureRequestEditEmbeddedRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, bool populateAutoFillFields = false, int? expiresAt = default(int?), SubSignerExperience signerExperience = default(SubSignerExperience))
+ public SignatureRequestEditEmbeddedRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, bool populateAutoFillFields = false, int? expiresAt = default(int?))
{
// to ensure "clientId" is required (not null)
@@ -98,7 +97,6 @@ protected SignatureRequestEditEmbeddedRequest() { }
this.UseTextTags = useTextTags;
this.PopulateAutoFillFields = populateAutoFillFields;
this.ExpiresAt = expiresAt;
- this.SignerExperience = signerExperience;
}
///
@@ -283,12 +281,6 @@ public static SignatureRequestEditEmbeddedRequest Init(string jsonData)
[DataMember(Name = "expires_at", EmitDefaultValue = true)]
public int? ExpiresAt { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -321,7 +313,6 @@ public override string ToString()
sb.Append(" UseTextTags: ").Append(UseTextTags).Append("\n");
sb.Append(" PopulateAutoFillFields: ").Append(PopulateAutoFillFields).Append("\n");
sb.Append(" ExpiresAt: ").Append(ExpiresAt).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -481,11 +472,6 @@ public bool Equals(SignatureRequestEditEmbeddedRequest input)
this.ExpiresAt == input.ExpiresAt ||
(this.ExpiresAt != null &&
this.ExpiresAt.Equals(input.ExpiresAt))
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -576,10 +562,6 @@ public override int GetHashCode()
{
hashCode = (hashCode * 59) + this.ExpiresAt.GetHashCode();
}
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -782,13 +764,6 @@ public List GetOpenApiTypes()
Type = "int?",
Value = ExpiresAt,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedWithTemplateRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedWithTemplateRequest.cs
index d1a36b057..fcf32fa66 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedWithTemplateRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditEmbeddedWithTemplateRequest.cs
@@ -56,8 +56,7 @@ protected SignatureRequestEditEmbeddedWithTemplateRequest() { }
/// Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. (default to false).
/// The title you want to assign to the SignatureRequest..
/// Controls whether [auto fill fields](https://faq.hellosign.com/hc/en-us/articles/360051467511-Auto-Fill-Fields) can automatically populate a signer's information during signing. **NOTE:** Keep your signer's information safe by ensuring that the _signer on your signature request is the intended party_ before using this feature. (default to false).
- /// signerExperience.
- public SignatureRequestEditEmbeddedWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool populateAutoFillFields = false, SubSignerExperience signerExperience = default(SubSignerExperience))
+ public SignatureRequestEditEmbeddedWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string subject = default(string), bool testMode = false, string title = default(string), bool populateAutoFillFields = false)
{
// to ensure "templateIds" is required (not null)
@@ -90,7 +89,6 @@ protected SignatureRequestEditEmbeddedWithTemplateRequest() { }
this.TestMode = testMode;
this.Title = title;
this.PopulateAutoFillFields = populateAutoFillFields;
- this.SignerExperience = signerExperience;
}
///
@@ -213,12 +211,6 @@ public static SignatureRequestEditEmbeddedWithTemplateRequest Init(string jsonDa
[DataMember(Name = "populate_auto_fill_fields", EmitDefaultValue = true)]
public bool PopulateAutoFillFields { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -242,7 +234,6 @@ public override string ToString()
sb.Append(" TestMode: ").Append(TestMode).Append("\n");
sb.Append(" Title: ").Append(Title).Append("\n");
sb.Append(" PopulateAutoFillFields: ").Append(PopulateAutoFillFields).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -356,11 +347,6 @@ public bool Equals(SignatureRequestEditEmbeddedWithTemplateRequest input)
(
this.PopulateAutoFillFields == input.PopulateAutoFillFields ||
this.PopulateAutoFillFields.Equals(input.PopulateAutoFillFields)
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -424,10 +410,6 @@ public override int GetHashCode()
hashCode = (hashCode * 59) + this.Title.GetHashCode();
}
hashCode = (hashCode * 59) + this.PopulateAutoFillFields.GetHashCode();
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -567,13 +549,6 @@ public List GetOpenApiTypes()
Type = "bool",
Value = PopulateAutoFillFields,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditRequest.cs
index 1cb3cadaf..585c78c47 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditRequest.cs
@@ -66,8 +66,7 @@ protected SignatureRequestEditRequest() { }
/// The title you want to assign to the SignatureRequest..
/// Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. (default to false).
/// When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details..
- /// signerExperience.
- public SignatureRequestEditRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, bool isEid = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string signingRedirectUrl = default(string), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, int? expiresAt = default(int?), SubSignerExperience signerExperience = default(SubSignerExperience))
+ public SignatureRequestEditRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List formFieldsPerDocument = default(List), bool hideTextTags = false, bool isEid = false, string message = default(string), Dictionary metadata = default(Dictionary), SubSigningOptions signingOptions = default(SubSigningOptions), string signingRedirectUrl = default(string), string subject = default(string), bool testMode = false, string title = default(string), bool useTextTags = false, int? expiresAt = default(int?))
{
this.Files = files;
@@ -95,7 +94,6 @@ protected SignatureRequestEditRequest() { }
this.Title = title;
this.UseTextTags = useTextTags;
this.ExpiresAt = expiresAt;
- this.SignerExperience = signerExperience;
}
///
@@ -287,12 +285,6 @@ public static SignatureRequestEditRequest Init(string jsonData)
[DataMember(Name = "expires_at", EmitDefaultValue = true)]
public int? ExpiresAt { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -326,7 +318,6 @@ public override string ToString()
sb.Append(" Title: ").Append(Title).Append("\n");
sb.Append(" UseTextTags: ").Append(UseTextTags).Append("\n");
sb.Append(" ExpiresAt: ").Append(ExpiresAt).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -491,11 +482,6 @@ public bool Equals(SignatureRequestEditRequest input)
this.ExpiresAt == input.ExpiresAt ||
(this.ExpiresAt != null &&
this.ExpiresAt.Equals(input.ExpiresAt))
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -590,10 +576,6 @@ public override int GetHashCode()
{
hashCode = (hashCode * 59) + this.ExpiresAt.GetHashCode();
}
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -803,13 +785,6 @@ public List GetOpenApiTypes()
Type = "int?",
Value = ExpiresAt,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditWithTemplateRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditWithTemplateRequest.cs
index 2e0e8f7a8..ca8887939 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditWithTemplateRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestEditWithTemplateRequest.cs
@@ -57,8 +57,7 @@ protected SignatureRequestEditWithTemplateRequest() { }
/// The subject in the email that will be sent to the signers..
/// Whether this is a test, the signature request will not be legally binding if set to `true`. Defaults to `false`. (default to false).
/// The title you want to assign to the SignatureRequest..
- /// signerExperience.
- public SignatureRequestEditWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), bool isEid = false, string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string signingRedirectUrl = default(string), string subject = default(string), bool testMode = false, string title = default(string), SubSignerExperience signerExperience = default(SubSignerExperience))
+ public SignatureRequestEditWithTemplateRequest(List templateIds = default(List), bool allowDecline = false, List ccs = default(List), string clientId = default(string), List customFields = default(List), List files = default(List), List fileUrls = default(List), bool isEid = false, string message = default(string), Dictionary metadata = default(Dictionary), List signers = default(List), SubSigningOptions signingOptions = default(SubSigningOptions), string signingRedirectUrl = default(string), string subject = default(string), bool testMode = false, string title = default(string))
{
// to ensure "templateIds" is required (not null)
@@ -87,7 +86,6 @@ protected SignatureRequestEditWithTemplateRequest() { }
this.Subject = subject;
this.TestMode = testMode;
this.Title = title;
- this.SignerExperience = signerExperience;
}
///
@@ -217,12 +215,6 @@ public static SignatureRequestEditWithTemplateRequest Init(string jsonData)
[DataMember(Name = "title", EmitDefaultValue = true)]
public string Title { get; set; }
- ///
- /// Gets or Sets SignerExperience
- ///
- [DataMember(Name = "signer_experience", EmitDefaultValue = true)]
- public SubSignerExperience SignerExperience { get; set; }
-
///
/// Returns the string presentation of the object
///
@@ -247,7 +239,6 @@ public override string ToString()
sb.Append(" Subject: ").Append(Subject).Append("\n");
sb.Append(" TestMode: ").Append(TestMode).Append("\n");
sb.Append(" Title: ").Append(Title).Append("\n");
- sb.Append(" SignerExperience: ").Append(SignerExperience).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -366,11 +357,6 @@ public bool Equals(SignatureRequestEditWithTemplateRequest input)
this.Title == input.Title ||
(this.Title != null &&
this.Title.Equals(input.Title))
- ) &&
- (
- this.SignerExperience == input.SignerExperience ||
- (this.SignerExperience != null &&
- this.SignerExperience.Equals(input.SignerExperience))
);
}
@@ -438,10 +424,6 @@ public override int GetHashCode()
{
hashCode = (hashCode * 59) + this.Title.GetHashCode();
}
- if (this.SignerExperience != null)
- {
- hashCode = (hashCode * 59) + this.SignerExperience.GetHashCode();
- }
return hashCode;
}
}
@@ -588,13 +570,6 @@ public List GetOpenApiTypes()
Type = "string",
Value = Title,
});
- types.Add(new OpenApiType()
- {
- Name = "signer_experience",
- Property = "SignerExperience",
- Type = "SubSignerExperience",
- Value = SignerExperience,
- });
return types;
}
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestSendRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestSendRequest.cs
index 2fa2c30cb..9719a297a 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestSendRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestSendRequest.cs
@@ -67,8 +67,7 @@ protected SignatureRequestSendRequest() { }
/// The title you want to assign to the SignatureRequest..
/// Send with a value of `true` if you wish to enable [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) parsing in your document. Defaults to disabled, or `false`. (default to false).
/// When the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details..
- /// signerExperience.
- public SignatureRequestSendRequest(List files = default(List), List fileUrls = default(List), List signers = default(List), List groupedSigners = default(List), bool allowDecline = false, bool allowReassign = false, List attachments = default(List), List ccEmailAddresses = default(List), string clientId = default(string), List customFields = default(List), SubFieldOptions fieldOptions = default(SubFieldOptions), List formFieldGroups = default(List), List formFieldRules = default(List), List