dropbox-sign 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +26 -9
  4. data/VERSION +1 -1
  5. data/docs/BulkSendJobApi.md +5 -3
  6. data/docs/TeamResponse.md +1 -0
  7. data/docs/TemplateResponse.md +2 -2
  8. data/docs/TemplateResponseDocument.md +3 -3
  9. data/docs/{TemplateResponseCustomField.md → TemplateResponseDocumentCustomFieldBase.md} +6 -8
  10. data/docs/TemplateResponseDocumentCustomFieldCheckbox.md +10 -0
  11. data/docs/TemplateResponseDocumentCustomFieldText.md +14 -0
  12. data/docs/TemplateResponseDocumentFieldGroup.md +1 -1
  13. data/docs/TemplateResponseDocumentFieldGroupRule.md +11 -0
  14. data/docs/{TemplateResponseDocumentFormField.md → TemplateResponseDocumentFormFieldBase.md} +5 -8
  15. data/docs/TemplateResponseDocumentFormFieldCheckbox.md +10 -0
  16. data/docs/TemplateResponseDocumentFormFieldDateSigned.md +10 -0
  17. data/docs/TemplateResponseDocumentFormFieldDropdown.md +10 -0
  18. data/docs/TemplateResponseDocumentFormFieldHyperlink.md +14 -0
  19. data/docs/TemplateResponseDocumentFormFieldInitials.md +10 -0
  20. data/docs/TemplateResponseDocumentFormFieldRadio.md +10 -0
  21. data/docs/TemplateResponseDocumentFormFieldSignature.md +10 -0
  22. data/docs/TemplateResponseDocumentFormFieldText.md +15 -0
  23. data/docs/{TemplateResponseDocumentStaticField.md → TemplateResponseDocumentStaticFieldBase.md} +6 -5
  24. data/docs/TemplateResponseDocumentStaticFieldCheckbox.md +10 -0
  25. data/docs/TemplateResponseDocumentStaticFieldDateSigned.md +10 -0
  26. data/docs/TemplateResponseDocumentStaticFieldDropdown.md +10 -0
  27. data/docs/TemplateResponseDocumentStaticFieldHyperlink.md +10 -0
  28. data/docs/TemplateResponseDocumentStaticFieldInitials.md +10 -0
  29. data/docs/TemplateResponseDocumentStaticFieldRadio.md +10 -0
  30. data/docs/TemplateResponseDocumentStaticFieldSignature.md +10 -0
  31. data/docs/TemplateResponseDocumentStaticFieldText.md +10 -0
  32. data/docs/TemplateResponseFieldAvgTextLength.md +1 -1
  33. data/lib/dropbox-sign/api/bulk_send_job_api.rb +6 -0
  34. data/lib/dropbox-sign/models/team_response.rb +17 -4
  35. data/lib/dropbox-sign/models/template_response.rb +5 -5
  36. data/lib/dropbox-sign/models/template_response_document.rb +9 -9
  37. data/lib/dropbox-sign/models/{template_response_document_static_field.rb → template_response_document_custom_field_base.rb} +75 -43
  38. data/lib/dropbox-sign/models/template_response_document_custom_field_checkbox.rb +263 -0
  39. data/lib/dropbox-sign/models/template_response_document_custom_field_text.rb +306 -0
  40. data/lib/dropbox-sign/models/template_response_document_field_group.rb +2 -3
  41. data/lib/dropbox-sign/models/template_response_document_field_group_rule.rb +263 -0
  42. data/lib/dropbox-sign/models/{template_response_named_form_field.rb → template_response_document_form_field_base.rb} +82 -79
  43. data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +263 -0
  44. data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +263 -0
  45. data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +263 -0
  46. data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +306 -0
  47. data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +263 -0
  48. data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +263 -0
  49. data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +263 -0
  50. data/lib/dropbox-sign/models/{template_response_document_form_field.rb → template_response_document_form_field_text.rb} +53 -132
  51. data/lib/dropbox-sign/models/{template_response_custom_field.rb → template_response_document_static_field_base.rb} +94 -112
  52. data/lib/dropbox-sign/models/template_response_document_static_field_checkbox.rb +263 -0
  53. data/lib/dropbox-sign/models/template_response_document_static_field_date_signed.rb +263 -0
  54. data/lib/dropbox-sign/models/template_response_document_static_field_dropdown.rb +263 -0
  55. data/lib/dropbox-sign/models/template_response_document_static_field_hyperlink.rb +263 -0
  56. data/lib/dropbox-sign/models/template_response_document_static_field_initials.rb +263 -0
  57. data/lib/dropbox-sign/models/template_response_document_static_field_radio.rb +263 -0
  58. data/lib/dropbox-sign/models/template_response_document_static_field_signature.rb +263 -0
  59. data/lib/dropbox-sign/models/template_response_document_static_field_text.rb +263 -0
  60. data/lib/dropbox-sign/models/template_response_field_avg_text_length.rb +1 -1
  61. data/lib/dropbox-sign/version.rb +1 -1
  62. data/lib/dropbox-sign.rb +22 -5
  63. data/openapi-config.yaml +1 -1
  64. data/openapi-sdk.yaml +592 -176
  65. data/test_fixtures/AccountCreateResponse.json +1 -0
  66. data/test_fixtures/ApiAppGetResponse.json +1 -0
  67. data/test_fixtures/ApiAppListResponse.json +1 -0
  68. data/test_fixtures/BulkSendJobGetResponse.json +8 -3
  69. data/test_fixtures/SignatureRequestGetResponse.json +65 -65
  70. data/test_fixtures/SignatureRequestListResponse.json +11 -4
  71. data/test_fixtures/TemplateGetResponse.json +1064 -41
  72. data/test_fixtures/TemplateListResponse.json +513 -44
  73. metadata +52 -18
  74. data/docs/TemplateResponseDocumentCustomField.md +0 -25
  75. data/docs/TemplateResponseNamedFormField.md +0 -23
  76. data/lib/dropbox-sign/models/template_response_document_custom_field.rb +0 -454
@@ -16,7 +16,8 @@
16
16
  "metadata": {},
17
17
  "signer_roles": [
18
18
  {
19
- "name": "Client"
19
+ "name": "Client",
20
+ "order": 0
20
21
  }
21
22
  ],
22
23
  "cc_roles": [
@@ -32,8 +33,22 @@
32
33
  "form_fields": [],
33
34
  "custom_fields": [
34
35
  {
35
- "name": "Cost",
36
- "type": "text"
36
+ "name": "merge_field_1",
37
+ "type": "text",
38
+ "x": 417,
39
+ "y": 219,
40
+ "width": 72,
41
+ "height": 15,
42
+ "required": false,
43
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
44
+ "fontSize": 12,
45
+ "avg_text_length": {
46
+ "num_lines": 1,
47
+ "num_chars_per_line": 19
48
+ },
49
+ "isMultiline": false,
50
+ "originalFontSize": 12,
51
+ "fontFamily": "arial"
37
52
  }
38
53
  ]
39
54
  }
@@ -41,7 +56,10 @@
41
56
  "accounts": [
42
57
  {
43
58
  "account_id": "5008b25c7f67153e57d5a357b1687968068fb465",
44
- "email_address": "me@dropboxsign.com"
59
+ "email_address": "me@dropboxsign.com",
60
+ "is_locked": false,
61
+ "is_paid_hs": false,
62
+ "is_paid_hf": false
45
63
  }
46
64
  ]
47
65
  },
@@ -72,61 +90,509 @@
72
90
  "index": 0,
73
91
  "name": "mutual_nda.pdf",
74
92
  "field_groups": [],
93
+ "custom_fields": [
94
+ {
95
+ "name": "merge_field_1",
96
+ "type": "text",
97
+ "x": 417,
98
+ "y": 219,
99
+ "width": 72,
100
+ "height": 15,
101
+ "required": false,
102
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
103
+ "fontSize": 12,
104
+ "avg_text_length": {
105
+ "num_lines": 1,
106
+ "num_chars_per_line": 19
107
+ },
108
+ "isMultiline": false,
109
+ "originalFontSize": 12,
110
+ "fontFamily": "arial"
111
+ },
112
+ {
113
+ "name": "merge_field_2",
114
+ "type": "checkbox",
115
+ "x": 515,
116
+ "y": 346,
117
+ "width": 18,
118
+ "height": 18,
119
+ "required": false,
120
+ "api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f",
121
+ "fontSize": 12
122
+ }
123
+ ],
75
124
  "form_fields": [
76
125
  {
77
- "api_id": "0ec7a7_1",
78
- "name": "VendorName",
126
+ "name": "Signature1",
127
+ "type": "signature",
128
+ "signer": "1",
129
+ "x": 136,
130
+ "y": 17,
131
+ "width": 108,
132
+ "height": 27,
133
+ "required": true,
134
+ "api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348",
135
+ "fontSize": 12
136
+ },
137
+ {
138
+ "name": "Textbox1",
79
139
  "type": "text",
80
- "x": 160,
81
- "y": 141,
82
- "width": 80,
83
- "height": 30,
84
- "required": true
140
+ "signer": "1",
141
+ "x": 328,
142
+ "y": 17,
143
+ "width": 144,
144
+ "height": 14,
145
+ "required": true,
146
+ "api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
147
+ "fontSize": 12,
148
+ "avg_text_length": {
149
+ "num_lines": 1,
150
+ "num_chars_per_line": 38
151
+ },
152
+ "isMultiline": false,
153
+ "originalFontSize": 12,
154
+ "fontFamily": "arial"
85
155
  },
86
156
  {
87
- "api_id": "0ec7a7_2",
88
- "name": "VendorTitle",
157
+ "name": "Textbox2",
89
158
  "type": "text",
90
- "x": 160,
91
- "y": 181,
92
- "width": 80,
93
- "height": 30,
94
- "required": true
159
+ "signer": "1",
160
+ "x": 328,
161
+ "y": 48,
162
+ "width": 144,
163
+ "height": 14,
164
+ "required": true,
165
+ "api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
166
+ "fontSize": 12,
167
+ "avg_text_length": {
168
+ "num_lines": 1,
169
+ "num_chars_per_line": 38
170
+ },
171
+ "isMultiline": false,
172
+ "originalFontSize": 12,
173
+ "fontFamily": "arial"
174
+ },
175
+ {
176
+ "name": "Initial1",
177
+ "type": "initials",
178
+ "signer": "1",
179
+ "x": 148,
180
+ "y": 66,
181
+ "width": 72,
182
+ "height": 27,
183
+ "required": true,
184
+ "api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552",
185
+ "fontSize": 12
186
+ },
187
+ {
188
+ "name": "Checkbox1",
189
+ "type": "checkbox",
190
+ "signer": "1",
191
+ "x": 325,
192
+ "y": 111,
193
+ "width": 18,
194
+ "height": 18,
195
+ "required": false,
196
+ "api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
197
+ "group": "75a6e4b5fea47",
198
+ "fontSize": 12
95
199
  },
96
200
  {
97
- "api_id": "0ec7a7_3",
98
- "name": "ManagerName",
201
+ "name": "Dropdown1",
202
+ "type": "dropdown",
203
+ "signer": "1",
204
+ "x": 423,
205
+ "y": 108,
206
+ "width": 70,
207
+ "height": 14,
208
+ "required": true,
209
+ "api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2",
210
+ "fontSize": 12
211
+ },
212
+ {
213
+ "name": "DateSigned1",
214
+ "type": "date_signed",
215
+ "signer": "1",
216
+ "x": 150,
217
+ "y": 119,
218
+ "width": 105,
219
+ "height": 18,
220
+ "required": true,
221
+ "api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262",
222
+ "fontSize": 12
223
+ },
224
+ {
225
+ "name": "Checkbox2",
226
+ "type": "checkbox",
227
+ "signer": "1",
228
+ "x": 325,
229
+ "y": 135,
230
+ "width": 18,
231
+ "height": 18,
232
+ "required": false,
233
+ "api_id": "edd732b8-b158-4714-a87b-503637d09ded",
234
+ "group": "75a6e4b5fea47",
235
+ "fontSize": 12
236
+ },
237
+ {
238
+ "name": "FullName1",
239
+ "type": "text",
240
+ "signer": "1",
241
+ "x": 144,
242
+ "y": 158,
243
+ "width": 72,
244
+ "height": 14,
245
+ "required": true,
246
+ "api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
247
+ "fontSize": 12,
248
+ "avg_text_length": {
249
+ "num_lines": 1,
250
+ "num_chars_per_line": 19
251
+ },
252
+ "isMultiline": false,
253
+ "originalFontSize": 12,
254
+ "fontFamily": "arial"
255
+ },
256
+ {
257
+ "name": "Email1",
258
+ "type": "text",
259
+ "signer": "1",
260
+ "x": 133,
261
+ "y": 191,
262
+ "width": 144,
263
+ "height": 14,
264
+ "required": true,
265
+ "api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
266
+ "fontSize": 12,
267
+ "avg_text_length": {
268
+ "num_lines": 1,
269
+ "num_chars_per_line": 38
270
+ },
271
+ "isMultiline": false,
272
+ "originalFontSize": 12,
273
+ "fontFamily": "arial",
274
+ "validation_type": "email_address"
275
+ },
276
+ {
277
+ "name": "RadioItem1",
278
+ "type": "radio",
279
+ "signer": "1",
280
+ "x": 307,
281
+ "y": 211,
282
+ "width": 18,
283
+ "height": 18,
284
+ "required": false,
285
+ "api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
286
+ "group": "0831822584086",
287
+ "fontSize": 12
288
+ },
289
+ {
290
+ "name": "Company1",
99
291
  "type": "text",
100
- "x": 160,
292
+ "signer": "1",
293
+ "x": 128,
101
294
  "y": 221,
102
- "width": 80,
103
- "height": 30,
104
- "required": true
295
+ "width": 144,
296
+ "height": 14,
297
+ "required": true,
298
+ "api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
299
+ "fontSize": 12,
300
+ "avg_text_length": {
301
+ "num_lines": 1,
302
+ "num_chars_per_line": 38
303
+ },
304
+ "isMultiline": false,
305
+ "originalFontSize": 12,
306
+ "fontFamily": "arial"
105
307
  },
106
308
  {
107
- "api_id": "0ec7a7_4",
108
- "name": "ManagerTitle",
309
+ "name": "Title1",
109
310
  "type": "text",
110
- "x": 160,
111
- "y": 251,
112
- "width": 80,
113
- "height": 30,
114
- "required": true
311
+ "signer": "1",
312
+ "x": 127,
313
+ "y": 250,
314
+ "width": 144,
315
+ "height": 14,
316
+ "required": true,
317
+ "api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
318
+ "fontSize": 12,
319
+ "avg_text_length": {
320
+ "num_lines": 1,
321
+ "num_chars_per_line": 38
322
+ },
323
+ "isMultiline": false,
324
+ "originalFontSize": 12,
325
+ "fontFamily": "arial"
115
326
  },
116
327
  {
117
- "api_id": "0ec7a7_5",
118
- "name": "DateSigned",
119
- "type": "date_signed",
120
- "x": 523,
121
- "y": 28,
122
- "width": 105,
123
- "height": 16
124
- }
125
- ],
126
- "custom_fields": [
328
+ "name": "RadioItem2",
329
+ "type": "radio",
330
+ "signer": "1",
331
+ "x": 307,
332
+ "y": 253,
333
+ "width": 18,
334
+ "height": 18,
335
+ "required": false,
336
+ "api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
337
+ "group": "0831822584086",
338
+ "fontSize": 12
339
+ },
127
340
  {
128
- "name": "Effective Date",
129
- "type": "text"
341
+ "name": "Textbox3",
342
+ "type": "text",
343
+ "signer": "1",
344
+ "x": 410,
345
+ "y": 279,
346
+ "width": 144,
347
+ "height": 14,
348
+ "required": true,
349
+ "api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
350
+ "fontSize": 12,
351
+ "avg_text_length": {
352
+ "num_lines": 1,
353
+ "num_chars_per_line": 38
354
+ },
355
+ "isMultiline": false,
356
+ "originalFontSize": 12,
357
+ "fontFamily": "arial"
358
+ },
359
+ {
360
+ "name": "Textbox4",
361
+ "type": "text",
362
+ "signer": "1",
363
+ "x": 101,
364
+ "y": 314,
365
+ "width": 72,
366
+ "height": 14,
367
+ "required": true,
368
+ "api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
369
+ "fontSize": 12,
370
+ "avg_text_length": {
371
+ "num_lines": 1,
372
+ "num_chars_per_line": 19
373
+ },
374
+ "isMultiline": false,
375
+ "originalFontSize": 12,
376
+ "fontFamily": "arial",
377
+ "validation_type": "custom_regex"
378
+ },
379
+ {
380
+ "name": "Textbox8",
381
+ "type": "text",
382
+ "signer": "1",
383
+ "x": 218,
384
+ "y": 313,
385
+ "width": 72,
386
+ "height": 14,
387
+ "required": true,
388
+ "api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
389
+ "fontSize": 12,
390
+ "avg_text_length": {
391
+ "num_lines": 1,
392
+ "num_chars_per_line": 19
393
+ },
394
+ "isMultiline": false,
395
+ "originalFontSize": 12,
396
+ "fontFamily": "arial",
397
+ "validation_type": "bank_routing_number"
398
+ },
399
+ {
400
+ "name": "Textbox12",
401
+ "type": "text",
402
+ "signer": "1",
403
+ "x": 339,
404
+ "y": 315,
405
+ "width": 72,
406
+ "height": 14,
407
+ "required": true,
408
+ "api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
409
+ "fontSize": 12,
410
+ "avg_text_length": {
411
+ "num_lines": 1,
412
+ "num_chars_per_line": 19
413
+ },
414
+ "isMultiline": false,
415
+ "originalFontSize": 12,
416
+ "fontFamily": "arial",
417
+ "validation_type": "social_security_number"
418
+ },
419
+ {
420
+ "name": "Textbox9",
421
+ "type": "text",
422
+ "signer": "1",
423
+ "x": 224,
424
+ "y": 343,
425
+ "width": 72,
426
+ "height": 14,
427
+ "required": true,
428
+ "api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
429
+ "fontSize": 12,
430
+ "avg_text_length": {
431
+ "num_lines": 1,
432
+ "num_chars_per_line": 19
433
+ },
434
+ "isMultiline": false,
435
+ "originalFontSize": 12,
436
+ "fontFamily": "arial",
437
+ "validation_type": "bank_account_number"
438
+ },
439
+ {
440
+ "name": "Textbox13",
441
+ "type": "text",
442
+ "signer": "1",
443
+ "x": 339,
444
+ "y": 345,
445
+ "width": 72,
446
+ "height": 14,
447
+ "required": true,
448
+ "api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
449
+ "fontSize": 12,
450
+ "avg_text_length": {
451
+ "num_lines": 1,
452
+ "num_chars_per_line": 19
453
+ },
454
+ "isMultiline": false,
455
+ "originalFontSize": 12,
456
+ "fontFamily": "arial",
457
+ "validation_type": "employer_identification_number"
458
+ },
459
+ {
460
+ "name": "Textbox5",
461
+ "type": "text",
462
+ "signer": "1",
463
+ "x": 113,
464
+ "y": 350,
465
+ "width": 72,
466
+ "height": 14,
467
+ "required": true,
468
+ "api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
469
+ "fontSize": 12,
470
+ "avg_text_length": {
471
+ "num_lines": 1,
472
+ "num_chars_per_line": 19
473
+ },
474
+ "isMultiline": false,
475
+ "originalFontSize": 12,
476
+ "fontFamily": "arial",
477
+ "validation_type": "numbers_only"
478
+ },
479
+ {
480
+ "name": "Textbox6",
481
+ "type": "text",
482
+ "signer": "1",
483
+ "x": 122,
484
+ "y": 374,
485
+ "width": 72,
486
+ "height": 14,
487
+ "required": true,
488
+ "api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
489
+ "fontSize": 12,
490
+ "avg_text_length": {
491
+ "num_lines": 1,
492
+ "num_chars_per_line": 19
493
+ },
494
+ "isMultiline": false,
495
+ "originalFontSize": 12,
496
+ "fontFamily": "arial",
497
+ "validation_type": "letters_only"
498
+ },
499
+ {
500
+ "name": "Textbox10",
501
+ "type": "text",
502
+ "signer": "1",
503
+ "x": 234,
504
+ "y": 373,
505
+ "width": 72,
506
+ "height": 14,
507
+ "required": true,
508
+ "api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
509
+ "fontSize": 12,
510
+ "avg_text_length": {
511
+ "num_lines": 1,
512
+ "num_chars_per_line": 19
513
+ },
514
+ "isMultiline": false,
515
+ "originalFontSize": 12,
516
+ "fontFamily": "arial",
517
+ "validation_type": "email_address"
518
+ },
519
+ {
520
+ "name": "Textbox14",
521
+ "type": "text",
522
+ "signer": "1",
523
+ "x": 339,
524
+ "y": 376,
525
+ "width": 72,
526
+ "height": 14,
527
+ "required": true,
528
+ "api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
529
+ "fontSize": 12,
530
+ "avg_text_length": {
531
+ "num_lines": 1,
532
+ "num_chars_per_line": 19
533
+ },
534
+ "isMultiline": false,
535
+ "originalFontSize": 12,
536
+ "fontFamily": "arial"
537
+ },
538
+ {
539
+ "name": "Textbox7",
540
+ "type": "text",
541
+ "signer": "1",
542
+ "x": 130,
543
+ "y": 401,
544
+ "width": 72,
545
+ "height": 14,
546
+ "required": true,
547
+ "api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
548
+ "fontSize": 12,
549
+ "avg_text_length": {
550
+ "num_lines": 1,
551
+ "num_chars_per_line": 19
552
+ },
553
+ "isMultiline": false,
554
+ "originalFontSize": 12,
555
+ "fontFamily": "arial",
556
+ "validation_type": "phone_number"
557
+ },
558
+ {
559
+ "name": "me_now_hyperlink_1",
560
+ "type": "hyperlink",
561
+ "signer": "me_now",
562
+ "x": 434,
563
+ "y": 400,
564
+ "width": 112,
565
+ "height": 14,
566
+ "required": false,
567
+ "api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
568
+ "fontSize": 12,
569
+ "avg_text_length": {
570
+ "num_lines": 1,
571
+ "num_chars_per_line": 30
572
+ },
573
+ "isMultiline": false,
574
+ "originalFontSize": 12,
575
+ "fontFamily": "helvetica"
576
+ },
577
+ {
578
+ "name": "Textbox11",
579
+ "type": "text",
580
+ "signer": "1",
581
+ "x": 237,
582
+ "y": 405,
583
+ "width": 72,
584
+ "height": 14,
585
+ "required": true,
586
+ "api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
587
+ "fontSize": 12,
588
+ "avg_text_length": {
589
+ "num_lines": 1,
590
+ "num_chars_per_line": 19
591
+ },
592
+ "isMultiline": false,
593
+ "originalFontSize": 12,
594
+ "fontFamily": "arial",
595
+ "validation_type": "zip_code"
130
596
  }
131
597
  ]
132
598
  }
@@ -134,7 +600,10 @@
134
600
  "accounts": [
135
601
  {
136
602
  "account_id": "5008b25c7f67153e57d5a357b1687968068fb465",
137
- "email_address": "me@dropboxsign.com"
603
+ "email_address": "me@dropboxsign.com",
604
+ "is_locked": false,
605
+ "is_paid_hs": false,
606
+ "is_paid_hf": false
138
607
  }
139
608
  ]
140
609
  }