# 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) | | ## Example ```ruby require 'ory-kratos-client' instance = OryHydraClient::RecoveryFlowMethodConfig.new( action: null, fields: null, messages: null, method: null ) ```