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