Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 991 Bytes

File metadata and controls

31 lines (22 loc) · 991 Bytes

DummyStageRequest

DummyStage Serializer

Properties

Name Type Description Notes
name str
throw_error bool [optional]

Example

from authentik_client.models.dummy_stage_request import DummyStageRequest

# TODO update the JSON string below
json = "{}"
# create an instance of DummyStageRequest from a JSON string
dummy_stage_request_instance = DummyStageRequest.from_json(json)
# print the JSON string representation of the object
print(DummyStageRequest.to_json())

# convert the object into a dict
dummy_stage_request_dict = dummy_stage_request_instance.to_dict()
# create an instance of DummyStageRequest from a dict
dummy_stage_request_from_dict = DummyStageRequest.from_dict(dummy_stage_request_dict)

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