Source: schemas/sign-templates.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Box Sign templates
  4. *
  5. * The part of an API response that describes marker
  6. * based pagination
  7. */
  8. export interface SignTemplates {
  9. /**
  10. * The limit that was used for these entries. This will be the same as the
  11. * `limit` query parameter unless that value exceeded the maximum value
  12. * allowed. The maximum value varies by API.
  13. * Example: 1000
  14. */
  15. limit?: number;
  16. /**
  17. * The marker for the start of the next page of results.
  18. * Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii
  19. */
  20. next_marker?: string;
  21. /**
  22. * The marker for the start of the previous page of results.
  23. * Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih
  24. */
  25. prev_marker?: string;
  26. /**
  27. * A list of templates.
  28. */
  29. entries?: schemas.SignTemplate[];
  30. }