dropbox-sign 1.6.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +15 -5
  4. data/VERSION +1 -1
  5. data/docs/AccountResponseQuotas.md +1 -1
  6. data/docs/BulkSendJobGetResponseSignatureRequests.md +1 -1
  7. data/docs/FaxApi.md +364 -0
  8. data/docs/FaxGetResponse.md +11 -0
  9. data/docs/FaxListResponse.md +11 -0
  10. data/docs/FaxResponse.md +20 -0
  11. data/docs/FaxResponseTransmission.md +12 -0
  12. data/docs/FaxSendRequest.md +18 -0
  13. data/docs/OAuthTokenRefreshRequest.md +2 -0
  14. data/docs/SignatureRequestApi.md +1 -1
  15. data/docs/SignatureRequestResponse.md +1 -1
  16. data/docs/SignatureRequestResponseDataValueInitials.md +1 -0
  17. data/docs/SignatureRequestResponseDataValueSignature.md +1 -0
  18. data/docs/SubWhiteLabelingOptions.md +12 -12
  19. data/docs/TemplateApi.md +3 -3
  20. data/docs/TemplateResponse.md +3 -2
  21. data/docs/TemplateResponseDocumentFormFieldBase.md +0 -1
  22. data/docs/TemplateResponseDocumentFormFieldCheckbox.md +1 -0
  23. data/docs/TemplateResponseDocumentFormFieldDateSigned.md +1 -0
  24. data/docs/TemplateResponseDocumentFormFieldDropdown.md +1 -0
  25. data/docs/TemplateResponseDocumentFormFieldHyperlink.md +1 -0
  26. data/docs/TemplateResponseDocumentFormFieldInitials.md +1 -0
  27. data/docs/TemplateResponseDocumentFormFieldRadio.md +1 -0
  28. data/docs/TemplateResponseDocumentFormFieldSignature.md +1 -0
  29. data/docs/TemplateResponseDocumentFormFieldText.md +1 -0
  30. data/examples/FaxDelete.rb +14 -0
  31. data/examples/FaxFiles.rb +17 -0
  32. data/examples/FaxGet.rb +17 -0
  33. data/examples/FaxList.rb +18 -0
  34. data/examples/FaxSend.rb +25 -0
  35. data/lib/dropbox-sign/api/fax_api.rb +495 -0
  36. data/lib/dropbox-sign/api/o_auth_api.rb +28 -0
  37. data/lib/dropbox-sign/api/signature_request_api.rb +2 -2
  38. data/lib/dropbox-sign/api/template_api.rb +2 -2
  39. data/lib/dropbox-sign/models/account_response_quotas.rb +1 -1
  40. data/lib/dropbox-sign/models/api_app_response_o_auth.rb +2 -1
  41. data/lib/dropbox-sign/models/bulk_send_job_get_response_signature_requests.rb +10 -7
  42. data/lib/dropbox-sign/models/fax_get_response.rb +263 -0
  43. data/lib/dropbox-sign/models/fax_list_response.rb +267 -0
  44. data/lib/dropbox-sign/models/fax_response.rb +403 -0
  45. data/lib/dropbox-sign/models/fax_response_transmission.rb +312 -0
  46. data/lib/dropbox-sign/models/fax_send_request.rb +345 -0
  47. data/lib/dropbox-sign/models/o_auth_token_refresh_request.rb +26 -4
  48. data/lib/dropbox-sign/models/signature_request_response.rb +10 -7
  49. data/lib/dropbox-sign/models/signature_request_response_custom_field_base.rb +2 -1
  50. data/lib/dropbox-sign/models/signature_request_response_data_value_initials.rb +16 -4
  51. data/lib/dropbox-sign/models/signature_request_response_data_value_signature.rb +16 -4
  52. data/lib/dropbox-sign/models/sub_white_labeling_options.rb +12 -12
  53. data/lib/dropbox-sign/models/template_response.rb +27 -16
  54. data/lib/dropbox-sign/models/template_response_document.rb +1 -2
  55. data/lib/dropbox-sign/models/template_response_document_form_field_base.rb +4 -16
  56. data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +16 -4
  57. data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +16 -4
  58. data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +16 -4
  59. data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +16 -4
  60. data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +16 -4
  61. data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +20 -4
  62. data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +16 -4
  63. data/lib/dropbox-sign/models/template_response_document_form_field_text.rb +17 -5
  64. data/lib/dropbox-sign/version.rb +1 -1
  65. data/lib/dropbox-sign.rb +6 -0
  66. data/openapi-config.yaml +1 -1
  67. data/openapi-sdk.yaml +821 -98
  68. data/run-build +9 -0
  69. data/test_fixtures/ApiAppCreateRequest.json +10 -10
  70. data/test_fixtures/ApiAppGetResponse.json +18 -3
  71. data/test_fixtures/ApiAppListResponse.json +7 -1
  72. data/test_fixtures/ApiAppUpdateRequest.json +11 -11
  73. data/test_fixtures/BulkSendJobGetResponse.json +9 -0
  74. data/test_fixtures/FaxGetResponse.json +31 -0
  75. data/test_fixtures/FaxListResponse.json +39 -0
  76. data/test_fixtures/FaxSendRequest.json +14 -0
  77. data/test_fixtures/FaxSendResponse.json +16 -0
  78. data/test_fixtures/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.json +7 -1
  79. data/test_fixtures/SignatureRequestBulkSendWithTemplateRequest.json +7 -1
  80. data/test_fixtures/SignatureRequestCreateEmbeddedRequest.json +7 -1
  81. data/test_fixtures/SignatureRequestCreateEmbeddedWithTemplateRequest.json +7 -1
  82. data/test_fixtures/SignatureRequestGetResponse.json +11 -1
  83. data/test_fixtures/SignatureRequestListResponse.json +9 -1
  84. data/test_fixtures/SignatureRequestSendRequest.json +5 -1
  85. data/test_fixtures/SignatureRequestSendWithTemplateRequest.json +7 -1
  86. data/test_fixtures/TeamGetResponse.json +5 -0
  87. data/test_fixtures/TemplateCreateEmbeddedDraftRequest.json +5 -0
  88. data/test_fixtures/TemplateCreateRequest.json +5 -0
  89. data/test_fixtures/TemplateGetResponse.json +34 -479
  90. data/test_fixtures/TemplateListResponse.json +43 -6
  91. data/test_fixtures/UnclaimedDraftCreateEmbeddedRequest.json +5 -0
  92. data/test_fixtures/UnclaimedDraftCreateEmbeddedWithTemplateRequest.json +5 -0
  93. data/test_fixtures/UnclaimedDraftCreateRequest.json +5 -0
  94. metadata +29 -8
data/run-build CHANGED
@@ -7,6 +7,15 @@ set -e
7
7
  DIR=$(cd `dirname $0` && pwd)
8
8
  WORKING_DIR="/app/ruby"
9
9
 
10
+ if [[ -n "$GITHUB_ACTIONS" ]]; then
11
+ printf "\nLogging in to docker.com ...\n"
12
+ echo "${DOCKER_TOKEN}" | docker login -u "${DOCKER_USERNAME}" --password-stdin
13
+ fi
14
+
15
+ # cleanup
16
+ rm -f "${DIR}/lib/dropbox-sign/api/"*.rb
17
+ rm -f "${DIR}/lib/dropbox-sign/models/"*.rb
18
+
10
19
  docker run --rm \
11
20
  -v "${DIR}/:/local" \
12
21
  openapitools/openapi-generator-cli:v7.8.0 generate \
@@ -18,18 +18,18 @@
18
18
  "white_labeling_options": {
19
19
  "header_background_color": "#1A1A1A",
20
20
  "legal_version": "terms1",
21
- "link_color": "#00B3E6",
22
- "page_background_color": "#F7F8F9",
23
- "primary_button_color": "#00b3e6",
24
- "primary_button_color_hover": "#00B3E6",
21
+ "link_color": "#0061FE",
22
+ "page_background_color": "#f7f8f9",
23
+ "primary_button_color": "#0061FE",
24
+ "primary_button_color_hover": "#0061FE",
25
25
  "primary_button_text_color": "#ffffff",
26
- "primary_button_text_color_hover": "#FFFFFF",
27
- "secondary_button_color": "#FFFFFF",
28
- "secondary_button_color_hover": "#FFFFFF",
29
- "secondary_button_text_color": "#00B3E6",
30
- "secondary_button_text_color_hover": "#00B3E6",
26
+ "primary_button_text_color_hover": "#ffffff",
27
+ "secondary_button_color": "#ffffff",
28
+ "secondary_button_color_hover": "#ffffff",
29
+ "secondary_button_text_color": "#0061FE",
30
+ "secondary_button_text_color_hover": "#0061FE",
31
31
  "text_color1": "#808080",
32
- "text_color2": "#FFFFFF"
32
+ "text_color2": "#ffffff"
33
33
  }
34
34
  }
35
35
  }
@@ -7,7 +7,7 @@
7
7
  "is_approved": false,
8
8
  "name": "My Production App",
9
9
  "oauth": {
10
- "callback_url": "http://example.com/oauth",
10
+ "callback_url": "https://example.com/oauth",
11
11
  "scopes": [
12
12
  "basic_account_info",
13
13
  "request_signature"
@@ -15,13 +15,28 @@
15
15
  "charges_users": false,
16
16
  "secret": "98891a1b59f312d04cd88e4e0c498d75"
17
17
  },
18
+ "options": {
19
+ "can_insert_everywhere": true
20
+ },
18
21
  "owner_account": {
19
22
  "account_id": "dc5deeb9e10b044c591ef2475aafad1d1d3bd888",
20
23
  "email_address": "john@example.com"
21
24
  },
22
25
  "white_labeling_options": {
23
- "primary_button_color": "#00b3e6",
24
- "primary_button_text_color": "#ffffff"
26
+ "header_background_color": "#1A1A1A",
27
+ "legal_version": "terms1",
28
+ "link_color": "#0061FE",
29
+ "page_background_color": "#f7f8f9",
30
+ "primary_button_color": "#0061FE",
31
+ "primary_button_color_hover": "#0061FE",
32
+ "primary_button_text_color": "#ffffff",
33
+ "primary_button_text_color_hover": "#ffffff",
34
+ "secondary_button_color": "#ffffff",
35
+ "secondary_button_color_hover": "#ffffff",
36
+ "secondary_button_text_color": "#0061FE",
37
+ "secondary_button_text_color_hover": "#0061FE",
38
+ "text_color1": "#808080",
39
+ "text_color2": "#ffffff"
25
40
  }
26
41
  }
27
42
  }
@@ -8,7 +8,7 @@
8
8
  "is_approved": true,
9
9
  "name": "My Production App",
10
10
  "oauth": {
11
- "callback_url": "http://example.com/oauth",
11
+ "callback_url": "https://example.com/oauth",
12
12
  "scopes": [
13
13
  "basic_account_info",
14
14
  "request_signature"
@@ -16,6 +16,9 @@
16
16
  "charges_users": false,
17
17
  "secret": "98891a1b59f312d04cd88e4e0c498d75"
18
18
  },
19
+ "options": {
20
+ "can_insert_everywhere": true
21
+ },
19
22
  "owner_account": {
20
23
  "account_id": "dc5deeb9e10b044c591ef2475aafad1d1d3bd888",
21
24
  "email_address": "john@example.com"
@@ -27,6 +30,9 @@
27
30
  "domains": ["example.com"],
28
31
  "is_approved": false,
29
32
  "name": "My Other App",
33
+ "options": {
34
+ "can_insert_everywhere": true
35
+ },
30
36
  "owner_account": {
31
37
  "account_id": "dc5deeb9e10b044c591ef2475aafad1d1d3bd888",
32
38
  "email_address": "john@example.com"
@@ -4,7 +4,7 @@
4
4
  "domains": [
5
5
  "example.com"
6
6
  ],
7
- "callback_url": "http://example.com/dropboxsign",
7
+ "callback_url": "https://example.com/dropboxsign",
8
8
  "oauth": {
9
9
  "callback_url": "https://example.com/oauth",
10
10
  "scopes": [
@@ -18,18 +18,18 @@
18
18
  "white_labeling_options": {
19
19
  "header_background_color": "#1A1A1A",
20
20
  "legal_version": "terms1",
21
- "link_color": "#00B3E6",
22
- "page_background_color": "#F7F8F9",
23
- "primary_button_color": "#00b3e6",
24
- "primary_button_color_hover": "#00B3E6",
21
+ "link_color": "#0061FE",
22
+ "page_background_color": "#f7f8f9",
23
+ "primary_button_color": "#0061FE",
24
+ "primary_button_color_hover": "#0061FE",
25
25
  "primary_button_text_color": "#ffffff",
26
- "primary_button_text_color_hover": "#FFFFFF",
27
- "secondary_button_color": "#FFFFFF",
28
- "secondary_button_color_hover": "#FFFFFF",
29
- "secondary_button_text_color": "#00B3E6",
30
- "secondary_button_text_color_hover": "#00B3E6",
26
+ "primary_button_text_color_hover": "#ffffff",
27
+ "secondary_button_color": "#ffffff",
28
+ "secondary_button_color_hover": "#ffffff",
29
+ "secondary_button_text_color": "#0061FE",
30
+ "secondary_button_text_color_hover": "#0061FE",
31
31
  "text_color1": "#808080",
32
- "text_color2": "#FFFFFF"
32
+ "text_color2": "#ffffff"
33
33
  }
34
34
  }
35
35
  }
@@ -24,6 +24,15 @@
24
24
  "custom_fields": [],
25
25
  "created_at": 0,
26
26
  "expires_at": 0,
27
+ "metadata": {
28
+ "metadata_name_1": "metadata_value_1",
29
+ "metadata_name_2": {
30
+ "metadata_name_2_a": "metadata_value_2_a"
31
+ },
32
+ "metadata_name_3": "metadata_value_3",
33
+ "custom_id": 1234,
34
+ "custom_text": "NDA #9"
35
+ },
27
36
  "response_data": [
28
37
  {
29
38
  "api_id": "80c678_1",
@@ -0,0 +1,31 @@
1
+ {
2
+ "default": {
3
+ "fax": {
4
+ "fax_id": "c2e9691c85d9d6fa6ae773842e3680b2b8650f1d",
5
+ "title": "example title",
6
+ "original_title": "example original title",
7
+ "subject": "example subject",
8
+ "message": "example message",
9
+ "metadata": {
10
+ "metadata_name_1": "metadata_value_1",
11
+ "metadata_name_2": {
12
+ "metadata_name_2_a": "metadata_value_2_a"
13
+ },
14
+ "metadata_name_3": "metadata_value_3",
15
+ "custom_id": 1234,
16
+ "custom_text": "NDA #9"
17
+ },
18
+ "created_at": 1726774555,
19
+ "sender": "me@dropboxsign.com",
20
+ "transmissions": [
21
+ {
22
+ "recipient": "recipient@dropboxsign.com",
23
+ "sender": "me@dropboxsign.com",
24
+ "sent_at": 1723231831,
25
+ "status_code": "success"
26
+ }
27
+ ],
28
+ "files_url": "https://api.hellosign.com/v3/fax/files/2b388914e3ae3b738bd4e2ee2850c677e6dc53d2",
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "default": {
3
+ "list_info": {
4
+ "num_pages": 1,
5
+ "num_results": 1,
6
+ "page": 1,
7
+ "page_size": 1
8
+ },
9
+ "faxes": [
10
+ {
11
+ "fax_id": "c2e9691c85d9d6fa6ae773842e3680b2b8650f1d",
12
+ "title": "example title",
13
+ "original_title": "example original title",
14
+ "subject": "example subject",
15
+ "message": "example message",
16
+ "metadata": {
17
+ "metadata_name_1": "metadata_value_1",
18
+ "metadata_name_2": {
19
+ "metadata_name_2_a": "metadata_value_2_a"
20
+ },
21
+ "metadata_name_3": "metadata_value_3",
22
+ "custom_id": 1234,
23
+ "custom_text": "NDA #9"
24
+ },
25
+ "created_at": 1726774555,
26
+ "sender": "me@dropboxsign.com",
27
+ "transmissions": [
28
+ {
29
+ "recipient": "recipient@dropboxsign.com",
30
+ "sender": "me@dropboxsign.com",
31
+ "sent_at": 1723231831,
32
+ "status_code": "success"
33
+ }
34
+ ],
35
+ "files_url": "https://api.hellosign.com/v3/fax/files/2b388914e3ae3b738bd4e2ee2850c677e6dc53d2",
36
+ }
37
+ ]
38
+ }
39
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "default": {
3
+ "file_url": [
4
+ "https://api.hellosign.com/v3/fax/files/2b388914e3ae3b738bd4e2ee2850c677e6dc53d2"
5
+ ],
6
+ "test_mode": "true",
7
+ "recipient": "16690000001",
8
+ "sender": "16690000000",
9
+ "cover_page_to": "Jill Fax",
10
+ "cover_page_message": "I'm sending you a fax!",
11
+ "cover_page_from": "Faxer Faxerson",
12
+ "title": "This is what the fax is about!"
13
+ }
14
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "default": {
3
+ "fax": {
4
+ "fax_id": "c2e9691c85d9d6fa6ae773842e3680b2b8650f1d",
5
+ "title": "example title",
6
+ "original_title": "example original title",
7
+ "subject": "example subject",
8
+ "message": "example message",
9
+ "metadata": [ ],
10
+ "created_at": 1726774555,
11
+ "sender": "me@dropboxsign.com",
12
+ "transmissions": [],
13
+ "files_url": "https://api.hellosign.com/v3/fax/files/2b388914e3ae3b738bd4e2ee2850c677e6dc53d2"
14
+ }
15
+ }
16
+ }
@@ -18,7 +18,13 @@
18
18
  ],
19
19
  "message": "Glad we could come to an agreement.",
20
20
  "metadata": {
21
- "field1": "value1"
21
+ "metadata_name_1": "metadata_value_1",
22
+ "metadata_name_2": {
23
+ "metadata_name_2_a": "metadata_value_2_a"
24
+ },
25
+ "metadata_name_3": "metadata_value_3",
26
+ "custom_id": 1234,
27
+ "custom_text": "NDA #9"
22
28
  },
23
29
  "signer_list": [
24
30
  {
@@ -17,7 +17,13 @@
17
17
  ],
18
18
  "message": "Glad we could come to an agreement.",
19
19
  "metadata": {
20
- "field1": "value1"
20
+ "metadata_name_1": "metadata_value_1",
21
+ "metadata_name_2": {
22
+ "metadata_name_2_a": "metadata_value_2_a"
23
+ },
24
+ "metadata_name_3": "metadata_value_3",
25
+ "custom_id": 1234,
26
+ "custom_text": "NDA #9"
21
27
  },
22
28
  "signer_list": [
23
29
  {
@@ -90,7 +90,13 @@
90
90
  "hide_text_tags": false,
91
91
  "message": "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
92
92
  "metadata": {
93
- "field1": "value1"
93
+ "metadata_name_1": "metadata_value_1",
94
+ "metadata_name_2": {
95
+ "metadata_name_2_a": "metadata_value_2_a"
96
+ },
97
+ "metadata_name_3": "metadata_value_3",
98
+ "custom_id": 1234,
99
+ "custom_text": "NDA #9"
94
100
  },
95
101
  "populate_auto_fill_fields": false,
96
102
  "signers": [
@@ -21,7 +21,13 @@
21
21
  ],
22
22
  "message": "Glad we could come to an agreement.",
23
23
  "metadata": {
24
- "field1": "value1"
24
+ "metadata_name_1": "metadata_value_1",
25
+ "metadata_name_2": {
26
+ "metadata_name_2_a": "metadata_value_2_a"
27
+ },
28
+ "metadata_name_3": "metadata_value_3",
29
+ "custom_id": 1234,
30
+ "custom_text": "NDA #9"
25
31
  },
26
32
  "populate_auto_fill_fields": false,
27
33
  "signers": [
@@ -6,7 +6,15 @@
6
6
  "original_title": "The NDA we talked about",
7
7
  "subject": "The NDA we talked about",
8
8
  "message": "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
9
- "metadata": {},
9
+ "metadata": {
10
+ "metadata_name_1": "metadata_value_1",
11
+ "metadata_name_2": {
12
+ "metadata_name_2_a": "metadata_value_2_a"
13
+ },
14
+ "metadata_name_3": "metadata_value_3",
15
+ "custom_id": 1234,
16
+ "custom_text": "NDA #9"
17
+ },
10
18
  "created_at": 1570471067,
11
19
  "is_complete": false,
12
20
  "is_declined": false,
@@ -91,6 +99,7 @@
91
99
  "required": true,
92
100
  "api_id": "initial__1",
93
101
  "value": "YM",
102
+ "is_signed": true,
94
103
  "signature_id": "a9f4825edef25f47e7b4c14ce8100d81d1693160"
95
104
  },
96
105
  {
@@ -107,6 +116,7 @@
107
116
  "required": true,
108
117
  "api_id": "signature__1",
109
118
  "value": "John Doe",
119
+ "is_signed": true,
110
120
  "signature_id": "a9f4825edef25f47e7b4c14ce8100d81d1693160"
111
121
  }
112
122
  ],
@@ -13,7 +13,15 @@
13
13
  "original_title": "FHA",
14
14
  "subject": "FHA",
15
15
  "message": "Let me know if you two have any questions.",
16
- "metadata": {},
16
+ "metadata": {
17
+ "metadata_name_1": "metadata_value_1",
18
+ "metadata_name_2": {
19
+ "metadata_name_2_a": "metadata_value_2_a"
20
+ },
21
+ "metadata_name_3": "metadata_value_3",
22
+ "custom_id": 1234,
23
+ "custom_text": "NDA #9"
24
+ },
17
25
  "created_at": 1570471067,
18
26
  "expires_at": 0,
19
27
  "is_complete": false,
@@ -192,6 +192,11 @@
192
192
  "is_eid": false,
193
193
  "message": "Please sign this NDA and then we can discuss more. Let me know if you\nhave any questions.",
194
194
  "metadata": {
195
+ "metadata_name_1": "metadata_value_1",
196
+ "metadata_name_2": {
197
+ "metadata_name_2_a": "metadata_value_2_a"
198
+ },
199
+ "metadata_name_3": "metadata_value_3",
195
200
  "custom_id": 1234,
196
201
  "custom_text": "NDA #9"
197
202
  },
@@ -472,4 +477,3 @@
472
477
  "use_text_tags": true
473
478
  }
474
479
  }
475
-
@@ -20,7 +20,13 @@
20
20
  "is_eid": false,
21
21
  "message": "Glad we could come to an agreement.",
22
22
  "metadata": {
23
- "field1": "value1"
23
+ "metadata_name_1": "metadata_value_1",
24
+ "metadata_name_2": {
25
+ "metadata_name_2_a": "metadata_value_2_a"
26
+ },
27
+ "metadata_name_3": "metadata_value_3",
28
+ "custom_id": 1234,
29
+ "custom_text": "NDA #9"
24
30
  },
25
31
  "signers": [
26
32
  {
@@ -28,6 +28,11 @@
28
28
  "api_signature_requests_left": 0
29
29
  }
30
30
  }
31
+ ],
32
+ "invited_emails": [
33
+ "invite_1@example.com",
34
+ "invite_2@example.com",
35
+ "invite_3@example.com"
31
36
  ]
32
37
  }
33
38
  }
@@ -96,6 +96,11 @@
96
96
  ],
97
97
  "message": "For your approval",
98
98
  "metadata": {
99
+ "metadata_name_1": "metadata_value_1",
100
+ "metadata_name_2": {
101
+ "metadata_name_2_a": "metadata_value_2_a"
102
+ },
103
+ "metadata_name_3": "metadata_value_3",
99
104
  "custom_id": 1234,
100
105
  "custom_text": "NDA #9"
101
106
  },
@@ -96,6 +96,11 @@
96
96
  ],
97
97
  "message": "For your approval",
98
98
  "metadata": {
99
+ "metadata_name_1": "metadata_value_1",
100
+ "metadata_name_2": {
101
+ "metadata_name_2_a": "metadata_value_2_a"
102
+ },
103
+ "metadata_name_3": "metadata_value_3",
99
104
  "custom_id": 1234,
100
105
  "custom_text": "NDA #9"
101
106
  },