UserLogoutStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] |
from authentik_client.models.patched_user_logout_stage_request import PatchedUserLogoutStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedUserLogoutStageRequest from a JSON string
patched_user_logout_stage_request_instance = PatchedUserLogoutStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedUserLogoutStageRequest.to_json())
# convert the object into a dict
patched_user_logout_stage_request_dict = patched_user_logout_stage_request_instance.to_dict()
# create an instance of PatchedUserLogoutStageRequest from a dict
patched_user_logout_stage_request_from_dict = PatchedUserLogoutStageRequest.from_dict(patched_user_logout_stage_request_dict)