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

  1. import * as schemas from '.';
  2. /**
  3. * Shield information barrier (Base)
  4. *
  5. * A base representation of a
  6. * shield information barrier object
  7. */
  8. export interface ShieldInformationBarrierBase {
  9. /**
  10. * The unique identifier for the shield information barrier
  11. * Example: 11446498
  12. */
  13. id?: string;
  14. /**
  15. * The type of the shield information barrier
  16. * Example: shield_information_barrier
  17. */
  18. type?: 'shield_information_barrier';
  19. }