DummyStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| throw_error | bool | [optional] |
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)