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

  1. import * as schemas from '.';
  2. /**
  3. * Shield information barrier segment restriction
  4. *
  5. * A standard representation of a
  6. * segment restriction of a shield information barrier
  7. * object
  8. */
  9. export interface ShieldInformationBarrierSegmentRestriction
  10. extends schemas.ShieldInformationBarrierSegmentRestrictionMini {
  11. shield_information_barrier?: schemas.ShieldInformationBarrierBase;
  12. /**
  13. * ISO date time string when this
  14. * shield information barrier
  15. * Segment Restriction object was created.
  16. * Example: 2020-06-26T18:44:45.869Z
  17. */
  18. created_at?: string;
  19. /**
  20. * The user who created this shield information barrier segment Restriction.
  21. */
  22. created_by?: schemas.UserBase;
  23. /**
  24. * ISO date time string when this
  25. * shield information barrier segment
  26. * Restriction was updated.
  27. * Example: 2020-07-26T18:44:45.869Z
  28. */
  29. updated_at?: string;
  30. /**
  31. * The user that updated this shield information barrier segment Restriction.
  32. */
  33. updated_by?: schemas.UserBase;
  34. }