Payload to create a recovery link
| Name | Type | Description | Notes |
|---|---|---|---|
| token_duration | str | [optional] |
from authentik_client.models.user_recovery_link_request import UserRecoveryLinkRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UserRecoveryLinkRequest from a JSON string
user_recovery_link_request_instance = UserRecoveryLinkRequest.from_json(json)
# print the JSON string representation of the object
print(UserRecoveryLinkRequest.to_json())
# convert the object into a dict
user_recovery_link_request_dict = user_recovery_link_request_instance.to_dict()
# create an instance of UserRecoveryLinkRequest from a dict
user_recovery_link_request_from_dict = UserRecoveryLinkRequest.from_dict(user_recovery_link_request_dict)