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

  1. import * as schemas from '.';
  2. /**
  3. * Signer fields for Box Sign request response
  4. *
  5. * The schema for a Signer object used
  6. * on the body of a Box Sign request object.
  7. */
  8. export interface SignRequestSigner extends schemas.SignRequestCreateSigner {
  9. /**
  10. * Set to `true` if the signer views the document
  11. * Example: true
  12. */
  13. has_viewed_document?: boolean;
  14. /**
  15. * Final decision made by the signer.
  16. */
  17. signer_decision?: object;
  18. inputs?: schemas.SignRequestSignerInput[];
  19. /**
  20. * URL to direct a signer to for signing
  21. * Example: https://example.com
  22. */
  23. embed_url?: string;
  24. /**
  25. * This URL is specifically designed for
  26. * signing documents within an HTML `iframe` tag.
  27. * It will be returned in the response
  28. * only if the `embed_url_external_user_id`
  29. * parameter was passed in the
  30. * `create Box Sign request` call.
  31. * Example: https://app.box.com/embed/sign/document/gfhr4222-a331-494b-808b-79bc7f3992a3/f14d7098-a331-494b-808b-79bc7f3992a4
  32. */
  33. iframeable_embed_url?: string;
  34. }