Source: schemas/sign-request-signer-input.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Sign Request Signer Input
  4. *
  5. * Input created by a Signer on a Sign Request
  6. */
  7. export interface SignRequestSignerInput extends schemas.SignRequestPrefillTag {
  8. /**
  9. * Type of input
  10. * Example: text
  11. */
  12. type?: 'signature' | 'date' | 'text' | 'checkbox' | 'radio' | 'dropdown';
  13. /**
  14. * Content type of input
  15. * Example: signature
  16. */
  17. content_type?:
  18. | 'signature'
  19. | 'initial'
  20. | 'stamp'
  21. | 'date'
  22. | 'checkbox'
  23. | 'text'
  24. | 'full_name'
  25. | 'first_name'
  26. | 'last_name'
  27. | 'company'
  28. | 'title'
  29. | 'email'
  30. | 'attachment'
  31. | 'radio'
  32. | 'dropdown';
  33. /**
  34. * Index of page that the input is on
  35. * Example: 4
  36. */
  37. page_index: number;
  38. /**
  39. * Whether this input was defined as read-only(immutable by signers) or not
  40. * Example: true
  41. */
  42. read_only?: boolean;
  43. }