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/DocumentDetailsResponseLinkedObjects.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
**provider** | **str** | | [optional]
8
8
**entity_type** | **str** | | [optional]
9
9
**entity_id** | **str** | | [optional]
10
+
**id** | **str** | | [optional]
10
11
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
11
12
12
13
[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/DocumentsApi.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -789,6 +789,7 @@ with pandadoc_client.ApiClient(configuration) as api_client:
789
789
watermark_font_size =12# int | Font size of the watermark. (optional)
790
790
watermark_opacity =0.5# float | In range 0.0-1.0 (optional)
791
791
watermark_text ="John Doe inc."# str | Specify watermark text. (optional)
792
+
separate_files =True# bool | Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1. (optional)
792
793
793
794
# example passing only required values which don't have defaults set
794
795
try:
@@ -808,6 +809,7 @@ with pandadoc_client.ApiClient(configuration) as api_client:
808
809
watermark_font_size=watermark_font_size,
809
810
watermark_opacity=watermark_opacity,
810
811
watermark_text=watermark_text,
812
+
separate_files=separate_files,
811
813
)
812
814
pprint(api_response)
813
815
except pandadoc_client.ApiException as e:
@@ -823,6 +825,7 @@ Name | Type | Description | Notes
823
825
**watermark_font_size** | **int**| Font size of the watermark. | [optional]
824
826
**watermark_opacity** | **float**| In range 0.0-1.0 | [optional]
**separate_files** | **bool**| Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1. | [optional]
826
829
827
830
### Return type
828
831
@@ -895,6 +898,7 @@ with pandadoc_client.ApiClient(configuration) as api_client:
separate_files =True# bool | Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1. (optional)
898
902
899
903
# example passing only required values which don't have defaults set
900
904
try:
@@ -903,13 +907,26 @@ with pandadoc_client.ApiClient(configuration) as api_client:
903
907
pprint(api_response)
904
908
except pandadoc_client.ApiException as e:
905
909
print("Exception when calling DocumentsApi->download_protected_document: %s\n"% e)
910
+
911
+
# example passing only required values which don't have defaults set
**separate_files** | **bool**| Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1. | [optional]
separate_files (bool): Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1.. [optional]
1587
1598
_return_http_data_only (bool): response data without head status
1588
1599
code and headers. Default is True.
1589
1600
_preload_content (bool): if False, the urllib3.HTTPResponse object
separate_files (bool): Set as `true` if you want to receive a zip file with all documents in separate when document transaction contains more than 1.. [optional]
1665
1677
_return_http_data_only (bool): response data without head status
1666
1678
code and headers. Default is True.
1667
1679
_preload_content (bool): if False, the urllib3.HTTPResponse object
0 commit comments