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

  1. import * as schemas from '.';
  2. /**
  3. * Shield information barrier segment
  4. *
  5. * A shield information barrier segment object
  6. */
  7. export interface ShieldInformationBarrierSegment {
  8. /**
  9. * The unique identifier for the shield information barrier segment
  10. * Example: 11446498
  11. */
  12. id?: string;
  13. /**
  14. * The type of the shield information barrier segment
  15. * Example: shield_information_barrier_segment
  16. */
  17. type?: 'shield_information_barrier_segment';
  18. shield_information_barrier?: schemas.ShieldInformationBarrierBase;
  19. /**
  20. * Name of the shield information barrier segment
  21. * Example: Investment Banking
  22. */
  23. name?: string;
  24. /**
  25. * Description of the shield information barrier segment
  26. * Example: 'Corporate division that engages in advisory_based financial
  27. * transactions on behalf of individuals, corporations, and governments.'
  28. */
  29. description?: string;
  30. /**
  31. * ISO date time string when this shield information
  32. * barrier object was created.
  33. * Example: 2020-06-26T18:44:45.869Z
  34. */
  35. created_at?: string;
  36. /**
  37. * The user who created this shield information barrier segment.
  38. */
  39. created_by?: schemas.UserBase;
  40. /**
  41. * ISO date time string when this
  42. * shield information barrier segment was updated.
  43. * Example: 2020-07-26T18:44:45.869Z
  44. */
  45. updated_at?: string;
  46. /**
  47. * The user that updated this shield information barrier segment.
  48. */
  49. updated_by?: schemas.UserBase;
  50. }