Skip to content

Commit 65a0d06

Browse files
Regenerated SDKs
1 parent 71913ca commit 65a0d06

28 files changed

Lines changed: 101 additions & 68 deletions
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Dropbox.Sign.Model.SignatureRequestSignerExperience
2-
Response signer experience description
2+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
33

44
## Properties
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**FormView** | **string** | Signer experience default |
8+
**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. |
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Dropbox.Sign.Model.SubSignerExperience
2-
Signer experience description
2+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
33

44
## Properties
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**FormView** | **string** | Signer experience default | [optional]
8+
**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]
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

sdks/dotnet/src/Dropbox.Sign/Model/SignatureRequestSignerExperience.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
namespace Dropbox.Sign.Model
2828
{
2929
/// <summary>
30-
/// Response signer experience description
30+
/// Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
3131
/// </summary>
3232
[DataContract(Name = "SignatureRequestSignerExperience")]
3333
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
3434
public partial class SignatureRequestSignerExperience : IEquatable<SignatureRequestSignerExperience>, IValidatableObject
3535
{
3636
/// <summary>
37-
/// Signer experience default
37+
/// Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.
3838
/// </summary>
39-
/// <value>Signer experience default</value>
39+
/// <value>Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.</value>
4040
[JsonConverter(typeof(StringEnumConverter))]
4141
public enum FormViewEnum
4242
{
@@ -67,9 +67,9 @@ public enum FormViewEnum
6767

6868

6969
/// <summary>
70-
/// Signer experience default
70+
/// Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.
7171
/// </summary>
72-
/// <value>Signer experience default</value>
72+
/// <value>Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.</value>
7373
[DataMember(Name = "form_view", IsRequired = true, EmitDefaultValue = true)]
7474
public FormViewEnum FormView { get; set; }
7575
/// <summary>
@@ -80,7 +80,7 @@ protected SignatureRequestSignerExperience() { }
8080
/// <summary>
8181
/// Initializes a new instance of the <see cref="SignatureRequestSignerExperience" /> class.
8282
/// </summary>
83-
/// <param name="formView">Signer experience default (required).</param>
83+
/// <param name="formView">Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden. (required).</param>
8484
public SignatureRequestSignerExperience(FormViewEnum formView = default(FormViewEnum))
8585
{
8686

sdks/dotnet/src/Dropbox.Sign/Model/SubSignerExperience.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
namespace Dropbox.Sign.Model
2828
{
2929
/// <summary>
30-
/// Signer experience description
30+
/// Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
3131
/// </summary>
3232
[DataContract(Name = "SubSignerExperience")]
3333
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
3434
public partial class SubSignerExperience : IEquatable<SubSignerExperience>, IValidatableObject
3535
{
3636
/// <summary>
37-
/// Signer experience default
37+
/// Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.
3838
/// </summary>
39-
/// <value>Signer experience default</value>
39+
/// <value>Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.</value>
4040
[JsonConverter(typeof(StringEnumConverter))]
4141
public enum FormViewEnum
4242
{
@@ -67,9 +67,9 @@ public enum FormViewEnum
6767

6868

6969
/// <summary>
70-
/// Signer experience default
70+
/// Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.
7171
/// </summary>
72-
/// <value>Signer experience default</value>
72+
/// <value>Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden.</value>
7373
[DataMember(Name = "form_view", EmitDefaultValue = true)]
7474
public FormViewEnum? FormView { get; set; }
7575
/// <summary>
@@ -80,7 +80,7 @@ protected SubSignerExperience() { }
8080
/// <summary>
8181
/// Initializes a new instance of the <see cref="SubSignerExperience" /> class.
8282
/// </summary>
83-
/// <param name="formView">Signer experience default.</param>
83+
/// <param name="formView">Changes the form view setting experienced by the signer. Supported versions are: - &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it - &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer cannot change it, the toggle is hidden..</param>
8484
public SubSignerExperience(FormViewEnum? formView = default(FormViewEnum?))
8585
{
8686

sdks/java-v1/docs/SignatureRequestSignerExperience.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# SignatureRequestSignerExperience
44

5-
Response signer experience description
5+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
66

77
## Properties
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11-
| `formView`<sup>*_required_</sup> | [```FormViewEnum```](#FormViewEnum) | Signer experience default | |
11+
| `formView`<sup>*_required_</sup> | [```FormViewEnum```](#FormViewEnum) | 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. | |
1212

1313

1414

sdks/java-v1/docs/SubSignerExperience.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# SubSignerExperience
44

5-
Signer experience description
5+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
66

77
## Properties
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11-
| `formView` | [```FormViewEnum```](#FormViewEnum) | Signer experience default | |
11+
| `formView` | [```FormViewEnum```](#FormViewEnum) | 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. | |
1212

1313

1414

sdks/java-v1/src/main/java/com/dropbox/sign/model/SignatureRequestSignerExperience.java

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,24 @@
2525
import java.util.Map;
2626
import java.util.Objects;
2727

28-
/** Response signer experience description */
28+
/**
29+
* Configuration options for modifying the settings of the signer application. Supports changing the
30+
* form view behavior.
31+
*/
2932
@JsonPropertyOrder({SignatureRequestSignerExperience.JSON_PROPERTY_FORM_VIEW})
3033
@javax.annotation.Generated(
3134
value = "org.openapitools.codegen.languages.JavaClientCodegen",
3235
comments = "Generator version: 7.12.0")
3336
@JsonIgnoreProperties(ignoreUnknown = true)
3437
public class SignatureRequestSignerExperience {
35-
/** Signer experience default */
38+
/**
39+
* Changes the form view setting experienced by the signer. Supported versions are: -
40+
* &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it -
41+
* &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a
42+
* toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn
43+
* it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer
44+
* cannot change it, the toggle is hidden.
45+
*/
3646
public enum FormViewEnum {
3747
DISABLED(String.valueOf("disabled")),
3848

@@ -97,7 +107,12 @@ public SignatureRequestSignerExperience formView(
97107
}
98108

99109
/**
100-
* Signer experience default
110+
* Changes the form view setting experienced by the signer. Supported versions are: -
111+
* &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it -
112+
* &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a
113+
* toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn
114+
* it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer
115+
* cannot change it, the toggle is hidden.
101116
*
102117
* @return formView
103118
*/

sdks/java-v1/src/main/java/com/dropbox/sign/model/SubSignerExperience.java

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,24 @@
2525
import java.util.Map;
2626
import java.util.Objects;
2727

28-
/** Signer experience description */
28+
/**
29+
* Configuration options for modifying the settings of the signer application. Supports changing the
30+
* form view behavior.
31+
*/
2932
@JsonPropertyOrder({SubSignerExperience.JSON_PROPERTY_FORM_VIEW})
3033
@javax.annotation.Generated(
3134
value = "org.openapitools.codegen.languages.JavaClientCodegen",
3235
comments = "Generator version: 7.12.0")
3336
@JsonIgnoreProperties(ignoreUnknown = true)
3437
public class SubSignerExperience {
35-
/** Signer experience default */
38+
/**
39+
* Changes the form view setting experienced by the signer. Supported versions are: -
40+
* &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it -
41+
* &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a
42+
* toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn
43+
* it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer
44+
* cannot change it, the toggle is hidden.
45+
*/
3646
public enum FormViewEnum {
3747
DISABLED(String.valueOf("disabled")),
3848

@@ -94,7 +104,12 @@ public SubSignerExperience formView(@javax.annotation.Nullable FormViewEnum form
94104
}
95105

96106
/**
97-
* Signer experience default
107+
* Changes the form view setting experienced by the signer. Supported versions are: -
108+
* &#x60;disabled&#x60; - Form view is disabled, and the signer cannot change it -
109+
* &#x60;enabled&#x60; - Form view is disabled initially, the signer can turn it on using a
110+
* toggle - &#x60;enabled_by_default&#x60; - Form view is enabled initially. The signer car turn
111+
* it off using a toggle - &#x60;forced&#x60; - Form view is enabled initially. The signer
112+
* cannot change it, the toggle is hidden.
98113
*
99114
* @return formView
100115
*/

sdks/java-v2/docs/SignatureRequestSignerExperience.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# SignatureRequestSignerExperience
44

5-
Response signer experience description
5+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
66

77
## Properties
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11-
| `formView`<sup>*_required_</sup> | [```FormViewEnum```](#FormViewEnum) | Signer experience default | |
11+
| `formView`<sup>*_required_</sup> | [```FormViewEnum```](#FormViewEnum) | 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. | |
1212

1313

1414

sdks/java-v2/docs/SubSignerExperience.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# SubSignerExperience
44

5-
Signer experience description
5+
Configuration options for modifying the settings of the signer application. Supports changing the form view behavior.
66

77
## Properties
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11-
| `formView` | [```FormViewEnum```](#FormViewEnum) | Signer experience default | |
11+
| `formView` | [```FormViewEnum```](#FormViewEnum) | 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. | |
1212

1313

1414

0 commit comments

Comments
 (0)