Source: schemas/template-signer-input.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Template Signer Input
  4. *
  5. * Input created by a Signer on a Template
  6. */
  7. export interface TemplateSignerInput extends schemas.SignRequestPrefillTag {
  8. /**
  9. * Type of input
  10. * Example: text
  11. */
  12. type?:
  13. | 'signature'
  14. | 'date'
  15. | 'text'
  16. | 'checkbox'
  17. | 'attachment'
  18. | 'radio'
  19. | 'dropdown';
  20. /**
  21. * Content type of input
  22. * Example: text
  23. */
  24. content_type?:
  25. | 'signature'
  26. | 'initial'
  27. | 'stamp'
  28. | 'date'
  29. | 'checkbox'
  30. | 'text'
  31. | 'full_name'
  32. | 'first_name'
  33. | 'last_name'
  34. | 'company'
  35. | 'title'
  36. | 'email'
  37. | 'attachment'
  38. | 'radio'
  39. | 'dropdown';
  40. /**
  41. * Whether or not the input is required.
  42. * Example: true
  43. */
  44. is_required?: boolean;
  45. /**
  46. * Index of page that the input is on.
  47. * Example: 4
  48. */
  49. page_index: number;
  50. /**
  51. * Document identifier.
  52. * Example: 123075213-eb54b537-8b25-445e-87c1-5a1c67d8cbd7
  53. */
  54. document_id?: string;
  55. /**
  56. * When the input is of the type `dropdown` this values will be filled with all the dropdown options.
  57. * Example: Yes,No,Maybe
  58. */
  59. dropdown_choices?: string[];
  60. /**
  61. * When the input is of type `radio` they can be grouped to gather with this identifier.
  62. * Example: da317330-225a-4c72-89ad-0d6dcaaf4df6
  63. */
  64. group_id?: string;
  65. /**
  66. * Where the input is located on a page.
  67. */
  68. coordinates?: object;
  69. /**
  70. * The size of the input.
  71. */
  72. dimensions?: object;
  73. /**
  74. * The label field is used especially for text, attachment, radio, and checkbox type inputs.
  75. * Example: Legal name
  76. */
  77. label?: string;
  78. /**
  79. * Whether this input was defined as read-only(immutable by signers) or not
  80. * Example: true
  81. */
  82. read_only?: boolean;
  83. }