Source: schemas/shield-information-barrier-segment-members.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * List of Shield Information Barrier Segment Members
  4. *
  5. * The part of an API response that describes marker
  6. * based pagination
  7. */
  8. export interface ShieldInformationBarrierSegmentMembers {
  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. * A list of shield information
  23. * barrier segment members
  24. */
  25. entries?: schemas.ShieldInformationBarrierSegmentMember[];
  26. }