docs/RecoveryFlowMethodConfig.md in ory-kratos-client-0.5.4.alpha1 vs docs/RecoveryFlowMethodConfig.md in ory-kratos-client-0.5.5.alpha2
- old
+ new
@@ -1,23 +1,24 @@
# OryHydraClient::RecoveryFlowMethodConfig
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**action** | **String** | Action should be used as the form action URL `<form action=\"{{ .Action }}\" method=\"post\">`. |
-**fields** | [**Array<FormField>**](FormField.md) | Fields contains multiple fields |
-**messages** | [**Array<Message>**](Message.md) | | [optional]
-**method** | **String** | Method is the form method (e.g. POST) |
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **action** | **String** | Action should be used as the form action URL `<form action=\"{{ .Action }}\" method=\"post\">`. | |
+| **fields** | [**Array<FormField>**](FormField.md) | Fields contains multiple fields | |
+| **messages** | [**Array<Message>**](Message.md) | | [optional] |
+| **method** | **String** | Method is the form method (e.g. POST) | |
-## Code Sample
+## Example
```ruby
-require 'OryHydraClient'
+require 'ory-kratos-client'
-instance = OryHydraClient::RecoveryFlowMethodConfig.new(action: null,
- fields: null,
- messages: null,
- method: null)
+instance = OryHydraClient::RecoveryFlowMethodConfig.new(
+ action: null,
+ fields: null,
+ messages: null,
+ method: null
+)
```
-