Source: schemas/enterprise-base.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Enterprise (Base)
  4. *
  5. * A mini representation of a enterprise, used when
  6. * nested within another resource.
  7. */
  8. export interface EnterpriseBase {
  9. /**
  10. * The unique identifier for this enterprise
  11. * Example: 1910967
  12. */
  13. id?: string;
  14. /**
  15. * `enterprise`
  16. * Example: enterprise
  17. */
  18. type?: 'enterprise';
  19. }