@ory/kratos-client
Version:
OpenAPI client for @ory/kratos-client
40 lines (32 loc) • 2.23 kB
Markdown
A Session
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**active** | **boolean** | Active state. If false the session is no longer active. | [optional] [default to undefined]
**authenticated_at** | **string** | The Session Authentication Timestamp When this session was authenticated at. If multi-factor authentication was used this is the time when the last factor was authenticated (e.g. the TOTP code challenge was completed). | [optional] [default to undefined]
**authentication_methods** | [**Array<SessionAuthenticationMethod>**](SessionAuthenticationMethod.md) | A list of authenticators which were used to authenticate the session. | [optional] [default to undefined]
**authenticator_assurance_level** | [**AuthenticatorAssuranceLevel**](AuthenticatorAssuranceLevel.md) | | [optional] [default to undefined]
**devices** | [**Array<SessionDevice>**](SessionDevice.md) | Devices has history of all endpoints where the session was used | [optional] [default to undefined]
**expires_at** | **string** | The Session Expiry When this session expires at. | [optional] [default to undefined]
**id** | **string** | Session ID | [default to undefined]
**identity** | [**Identity**](Identity.md) | | [optional] [default to undefined]
**issued_at** | **string** | The Session Issuance Timestamp When this session was issued at. Usually equal or close to &
**tokenized** | **string** | Tokenized is the tokenized (e.g. JWT) version of the session. It is only set when the `tokenize_as&
```typescript
import { Session } from '@ory/kratos-client';
const instance: Session = {
active,
authenticated_at,
authentication_methods,
authenticator_assurance_level,
devices,
expires_at,
id,
identity,
issued_at,
tokenized,
};
```
[[Back to Model list]](../README.md