You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/model/TemplateResponseDocumentFormFieldText.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ Name | Type | Description | Notes
12
12
|`originalFontSize`|```number```| Original font size used in this form field's text. ||
13
13
|`fontFamily`|```string```| Font family used in this form field's text. ||
14
14
|`validationType`|```string```| Each text field may contain a `validation_type` parameter. Check out the list of [validation types](https://faq.hellosign.com/hc/en-us/articles/217115577) to learn more about the possible values. ||
15
+
|`validationCustomRegex`|```string```| When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field. ||
16
+
|`validationCustomRegexFormatLabel`|```string```| When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern. ||
15
17
|`group`|```string```| The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. ||
16
18
17
19
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
Copy file name to clipboardExpand all lines: model/templateResponseDocumentFormFieldText.ts
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,14 @@ export class TemplateResponseDocumentFormFieldText extends TemplateResponseDocum
51
51
* Each text field may contain a `validation_type` parameter. Check out the list of [validation types](https://faq.hellosign.com/hc/en-us/articles/217115577) to learn more about the possible values.
* When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field.
56
+
*/
57
+
"validationCustomRegex"?: string|null;
58
+
/**
59
+
* When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern.
60
+
*/
61
+
"validationCustomRegexFormatLabel"?: string|null;
54
62
/**
55
63
* The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
56
64
*/
@@ -89,6 +97,16 @@ export class TemplateResponseDocumentFormFieldText extends TemplateResponseDocum
Copy file name to clipboardExpand all lines: openapi-sdk.yaml
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7797,7 +7797,7 @@ components:
7797
7797
type: array
7798
7798
items:
7799
7799
type: string
7800
-
maxItems: 2
7800
+
maxItems: 10
7801
7801
minItems: 1
7802
7802
name:
7803
7803
description: 'The name you want to assign to the ApiApp.'
@@ -7823,7 +7823,7 @@ components:
7823
7823
type: array
7824
7824
items:
7825
7825
type: string
7826
-
maxItems: 2
7826
+
maxItems: 10
7827
7827
name:
7828
7828
description: 'The name you want to assign to the ApiApp.'
7829
7829
type: string
@@ -8135,6 +8135,7 @@ components:
8135
8135
enum:
8136
8136
- user_activity
8137
8137
- document_status
8138
+
- sms_activity
8138
8139
maxItems: 2
8139
8140
minItems: 1
8140
8141
start_date:
@@ -11964,6 +11965,7 @@ components:
11964
11965
enum:
11965
11966
- user_activity
11966
11967
- document_status
11968
+
- sms_activity
11967
11969
type: object
11968
11970
x-internal-class: true
11969
11971
SignatureRequestResponse:
@@ -13130,6 +13132,14 @@ components:
13130
13132
- employer_identification_number
13131
13133
- custom_regex
13132
13134
nullable: true
13135
+
validation_custom_regex:
13136
+
description: 'When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field.'
13137
+
type: string
13138
+
nullable: true
13139
+
validation_custom_regex_format_label:
13140
+
description: 'When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern.'
13141
+
type: string
13142
+
nullable: true
13133
13143
group:
13134
13144
description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
0 commit comments