docs/UpdateSettingsFlowWithTotpMethod.md in ory-kratos-client-1.1.0 vs docs/UpdateSettingsFlowWithTotpMethod.md in ory-kratos-client-1.2.1
- old
+ new
@@ -6,19 +6,21 @@
| ---- | ---- | ----------- | ----- |
| **csrf_token** | **String** | CSRFToken is the anti-CSRF token | [optional] |
| **method** | **String** | Method Should be set to \"totp\" when trying to add, update, or remove a totp pairing. | |
| **totp_code** | **String** | ValidationTOTP must contain a valid TOTP based on the | [optional] |
| **totp_unlink** | **Boolean** | UnlinkTOTP if true will remove the TOTP pairing, effectively removing the credential. This can be used to set up a new TOTP device. | [optional] |
+| **transient_payload** | **Object** | Transient data to pass along to any webhooks | [optional] |
## Example
```ruby
require 'ory-kratos-client'
instance = OryKratosClient::UpdateSettingsFlowWithTotpMethod.new(
csrf_token: null,
method: null,
totp_code: null,
- totp_unlink: null
+ totp_unlink: null,
+ transient_payload: null
)
```