docs/Session.md in ory-kratos-client-0.4.6.alpha1 vs docs/Session.md in ory-kratos-client-0.5.0.alpha1
- old
+ new
@@ -2,24 +2,26 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
+**active** | **Boolean** | | [optional]
**authenticated_at** | **DateTime** | |
**expires_at** | **DateTime** | |
+**id** | **String** | |
**identity** | [**Identity**](Identity.md) | |
**issued_at** | **DateTime** | |
-**sid** | **String** | |
## Code Sample
```ruby
require 'OryHydraClient'
-instance = OryHydraClient::Session.new(authenticated_at: null,
+instance = OryHydraClient::Session.new(active: null,
+ authenticated_at: null,
expires_at: null,
+ id: null,
identity: null,
- issued_at: null,
- sid: null)
+ issued_at: null)
```