docs/UiNodeTextAttributes.md in ory-kratos-client-0.7.6.alpha7 vs docs/UiNodeTextAttributes.md in ory-kratos-client-0.8.0.alpha2
- old
+ new
@@ -2,17 +2,21 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
+| **id** | **String** | A unique identifier | |
+| **node_type** | **String** | | |
| **text** | [**UiText**](UiText.md) | | |
## Example
```ruby
require 'ory-kratos-client'
instance = OryKratosClient::UiNodeTextAttributes.new(
+ id: null,
+ node_type: null,
text: null
)
```