institution.ts 312 B

1234567891011121314
  1. import { Nullable } from './utils'
  2. export type Institution = {
  3. commonsAccount: boolean
  4. enterpriseCommons: boolean
  5. writefullCommonsAccount: boolean
  6. confirmed: boolean
  7. id: number
  8. isUniversity: boolean
  9. maxConfirmationMonths: Nullable<number>
  10. name: string
  11. ssoBeta: boolean
  12. ssoEnabled: boolean
  13. }