docs/SessionAuthenticationMethod.md in ory-client-0.0.1.alpha113 vs docs/SessionAuthenticationMethod.md in ory-client-0.0.1.alpha115
- old
+ new
@@ -2,18 +2,20 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
+| **aal** | [**AuthenticatorAssuranceLevel**](AuthenticatorAssuranceLevel.md) | | [optional] |
| **completed_at** | **Time** | When the authentication challenge was completed. | [optional] |
| **method** | **String** | | [optional] |
## Example
```ruby
require 'ory-client'
instance = OryClient::SessionAuthenticationMethod.new(
+ aal: null,
completed_at: null,
method: null
)
```