DenyStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| deny_message | str | [optional] |
from authentik_client.models.deny_stage_request import DenyStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DenyStageRequest from a JSON string
deny_stage_request_instance = DenyStageRequest.from_json(json)
# print the JSON string representation of the object
print(DenyStageRequest.to_json())
# convert the object into a dict
deny_stage_request_dict = deny_stage_request_instance.to_dict()
# create an instance of DenyStageRequest from a dict
deny_stage_request_from_dict = DenyStageRequest.from_dict(deny_stage_request_dict)