interface IGetSessionResponse { id: number; org: string; orgUnit: string; profile?: string; skin?: string; status: string; firstJoin: Date; started: Date; finished: Date; joinPolicy?: ('ORG' | 'ORGUNIT' | 'RESTRICT' | 'PUBLIC' | 'JOINPWD'); listPolicy: string; allowJoinOu: Array; created: string; updated: string; } export default IGetSessionResponse;