interface IListSessionResponse { metadata: { offset: number; items: number; total: number; }; records: Array<{ 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 IListSessionResponse;