Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 977 Bytes

File metadata and controls

31 lines (22 loc) · 977 Bytes

DenyStageRequest

DenyStage Serializer

Properties

Name Type Description Notes
name str
deny_message str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]