PromptStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| fields | List[UUID] | ||
| validation_policies | List[UUID] | [optional] |
from authentik_client.models.prompt_stage_request import PromptStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PromptStageRequest from a JSON string
prompt_stage_request_instance = PromptStageRequest.from_json(json)
# print the JSON string representation of the object
print(PromptStageRequest.to_json())
# convert the object into a dict
prompt_stage_request_dict = prompt_stage_request_instance.to_dict()
# create an instance of PromptStageRequest from a dict
prompt_stage_request_from_dict = PromptStageRequest.from_dict(prompt_stage_request_dict)