Source: schemas/user-base.generated.ts

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