-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
268a1be
commit f0a3094
Showing
72 changed files
with
9,415 additions
and
2,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.1 | ||
1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 6 additions & 8 deletions
14
docs/Model/TemplateResponseCustomField.md → ...emplateResponseDocumentCustomFieldBase.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
# # TemplateResponseCustomField | ||
|
||
# # TemplateResponseDocumentCustomFieldBase | ||
|
||
An array of Form Field objects containing the name and type of each named field. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `type`<sup>*_required_</sup> | ```string``` | | | | ||
| `api_id` | ```string``` | The unique ID for this field. | | | ||
| `name` | ```string``` | The name of the Custom Field. | | | ||
| `type` | ```string``` | The type of this Custom Field. Only `text` and `checkbox` are currently supported. | | | ||
| `signer` | ```string``` | The signer of the Custom Field. Can be `null` if field is a merge field (assigned to Sender). | | | ||
| `x` | ```int``` | The horizontal offset in pixels for this form field. | | | ||
| `y` | ```int``` | The vertical offset in pixels for this form field. | | | ||
| `width` | ```int``` | The width in pixels of this form field. | | | ||
| `height` | ```int``` | The height in pixels of this form field. | | | ||
| `required` | ```bool``` | Boolean showing whether or not this field is required. | | | ||
| `api_id` | ```string``` | The unique ID for this field. | | | ||
| `group` | ```string``` | The name of the group this field is in. If this field is not a group, this defaults to `null`. | | | ||
| `avg_text_length` | [```\Dropbox\Sign\Model\TemplateResponseFieldAvgTextLength```](TemplateResponseFieldAvgTextLength.md) | | | | ||
| `is_multiline` | ```bool``` | Whether this form field is multiline text. | | | ||
| `original_font_size` | ```int``` | Original font size used in this form field's text. | | | ||
| `font_family` | ```string``` | Font family used in this form field's text. | | | ||
| `font_size` | ```int``` | Final font size used by this form field. | | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# # TemplateResponseDocumentCustomFieldCheckbox | ||
|
||
This class extends `TemplateResponseDocumentCustomFieldBase` | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `type`<sup>*_required_</sup> | ```string``` | The type of this Custom Field. Only `text` and `checkbox` are currently supported.<br><br>* Text uses `TemplateResponseDocumentCustomFieldText`<br>* Checkbox uses `TemplateResponseDocumentCustomFieldCheckbox` | [default to 'checkbox'] | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# # TemplateResponseDocumentCustomFieldText | ||
|
||
This class extends `TemplateResponseDocumentCustomFieldBase` | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `type`<sup>*_required_</sup> | ```string``` | The type of this Custom Field. Only `text` and `checkbox` are currently supported.<br><br>* Text uses `TemplateResponseDocumentCustomFieldText`<br>* Checkbox uses `TemplateResponseDocumentCustomFieldCheckbox` | [default to 'text'] | | ||
| `avg_text_length` | [```\Dropbox\Sign\Model\TemplateResponseFieldAvgTextLength```](TemplateResponseFieldAvgTextLength.md) | | | | ||
| `is_multiline` | ```bool``` | Whether this form field is multiline text. | | | ||
| `original_font_size` | ```int``` | Original font size used in this form field's text. | | | ||
| `font_family` | ```string``` | Font family used in this form field's text. | | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# # TemplateResponseDocumentFieldGroupRule | ||
|
||
The rule used to validate checkboxes in the form field group. See [checkbox field grouping](/api/reference/constants/#checkbox-field-grouping). | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `requirement` | ```string``` | Examples: `require_0-1` `require_1` `require_1-ormore`<br><br>- Check out the list of [acceptable `requirement` checkbox type values](/api/reference/constants/#checkbox-field-grouping). - Check out the list of [acceptable `requirement` radio type fields](/api/reference/constants/#radio-field-grouping). - Radio groups require **at least** two fields per group. | | | ||
| `group_label` | ```string``` | Name of the group | | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
13 changes: 5 additions & 8 deletions
13
...odel/TemplateResponseDocumentFormField.md → .../TemplateResponseDocumentFormFieldBase.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
# # TemplateResponseDocumentFormField | ||
|
||
# # TemplateResponseDocumentFormFieldBase | ||
|
||
An array of Form Field objects containing the name and type of each named field. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `type`<sup>*_required_</sup> | ```string``` | | | | ||
| `api_id` | ```string``` | A unique id for the form field. | | | ||
| `name` | ```string``` | The name of the form field. | | | ||
| `type` | ```string``` | The type of this form field. See [field types](/api/reference/constants/#field-types). | | | ||
| `signer` | ```string``` | The signer of the Form Field. | | | ||
| `x` | ```int``` | The horizontal offset in pixels for this form field. | | | ||
| `y` | ```int``` | The vertical offset in pixels for this form field. | | | ||
| `width` | ```int``` | The width in pixels of this form field. | | | ||
| `height` | ```int``` | The height in pixels of this form field. | | | ||
| `required` | ```bool``` | Boolean showing whether or not this field is required. | | | ||
| `group` | ```string``` | The name of the group this field is in. If this field is not a group, this defaults to `null`. | | | ||
| `avg_text_length` | [```\Dropbox\Sign\Model\TemplateResponseFieldAvgTextLength```](TemplateResponseFieldAvgTextLength.md) | | | | ||
| `is_multiline` | ```bool``` | Whether this form field is multiline text. | | | ||
| `original_font_size` | ```int``` | Original font size used in this form field's text. | | | ||
| `font_family` | ```string``` | Font family used in this form field's text. | | | ||
| `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. | | | ||
| `font_size` | ```int``` | Final font size used by this form field. | | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# # TemplateResponseDocumentFormFieldCheckbox | ||
|
||
This class extends `TemplateResponseDocumentFormFieldBase` | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
| `type`<sup>*_required_</sup> | ```string``` | The type of this form field. See [field types](/api/reference/constants/#field-types).<br><br>* Text Field uses `TemplateResponseDocumentFormFieldText`<br>* Dropdown Field uses `TemplateResponseDocumentFormFieldDropdown`<br>* Hyperlink Field uses `TemplateResponseDocumentFormFieldHyperlink`<br>* Checkbox Field uses `TemplateResponseDocumentFormFieldCheckbox`<br>* Radio Field uses `TemplateResponseDocumentFormFieldRadio`<br>* Signature Field uses `TemplateResponseDocumentFormFieldSignature`<br>* Date Signed Field uses `TemplateResponseDocumentFormFieldDateSigned`<br>* Initials Field uses `TemplateResponseDocumentFormFieldInitials` | [default to 'checkbox'] | | ||
|
||
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) |
Oops, something went wrong.