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

  1. import * as schemas from '.';
  2. /**
  3. * Shield information barrier report
  4. *
  5. * A standard representation
  6. * of a shield information barrier report object
  7. */
  8. export interface ShieldInformationBarrierReport
  9. extends schemas.ShieldInformationBarrierReportBase {
  10. shield_information_barrier?: schemas.ShieldInformationBarrierReference;
  11. /**
  12. * Status of the shield information report
  13. * Example: pending
  14. */
  15. status?: 'pending' | 'error' | 'done' | 'cancelled';
  16. details?: schemas.ShieldInformationBarrierReportDetails;
  17. /**
  18. * ISO date time string when this
  19. * shield information barrier report object was created.
  20. * Example: 2020-06-26T18:44:45.869Z
  21. */
  22. created_at?: string;
  23. /**
  24. * The user who created this shield information barrier report.
  25. */
  26. created_by?: schemas.UserBase;
  27. /**
  28. * ISO date time string when this
  29. * shield information barrier report was updated.
  30. * Example: 2020-07-26T18:44:45.869Z
  31. */
  32. updated_at?: string;
  33. }