institution.ts 283 B

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