Source: schemas/integration-mappings.ts

  1. import * as schemas from '.';
  2. /**
  3. * Integration mappings
  4. *
  5. * The part of an API response that describes marker
  6. * based pagination
  7. */
  8. export interface IntegrationMappings {
  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: 3000
  19. */
  20. next_marker?: number;
  21. /**
  22. * The marker for the start of the previous page of results.
  23. * Example: 1000
  24. */
  25. prev_marker?: number;
  26. entries?: schemas.IntegrationMapping[];
  27. }