institution.ts 248 B

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