Source: schemas/user-integration-mappings.ts

  1. import * as schemas from '.';
  2. /**
  3. * User (Integration Mappings)
  4. *
  5. * A user representation for integration mappings
  6. * API purposes. Fields name and login are not required.
  7. */
  8. export interface UserIntegrationMappings extends schemas.UserBase {
  9. /**
  10. * The display name of this user
  11. * Example: Aaron Levie
  12. */
  13. name?: string;
  14. /**
  15. * The primary email address of this user
  16. * Example: ceo@example.com
  17. */
  18. login?: string;
  19. }