Source: schemas/sign-request-prefill-tag.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Sign request prefill tag
  4. *
  5. * Prefill tags are used to prefill placeholders with signer input data. Only
  6. * one value field can be included.
  7. */
  8. export interface SignRequestPrefillTag {
  9. /**
  10. * This references the ID of a specific tag contained in a file of the signature request.
  11. * Example: 1234
  12. */
  13. document_tag_id?: string;
  14. /**
  15. * Text prefill value
  16. * Example: text
  17. */
  18. text_value?: string;
  19. /**
  20. * Checkbox prefill value
  21. * Example: true
  22. */
  23. checkbox_value?: boolean;
  24. /**
  25. * Date prefill value
  26. * Example: 2021-04-26
  27. */
  28. date_value?: string;
  29. }