PromptStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [readonly] | |
| name | str | ||
| component | str | Get object type so that we know how to edit the object | [readonly] |
| verbose_name | str | Return object's verbose_name | [readonly] |
| verbose_name_plural | str | Return object's plural verbose_name | [readonly] |
| meta_model_name | str | Return internal model name | [readonly] |
| flow_set | List[FlowSet] | [readonly] | |
| fields | List[UUID] | ||
| validation_policies | List[UUID] | [optional] |
from authentik_client.models.prompt_stage import PromptStage
# TODO update the JSON string below
json = "{}"
# create an instance of PromptStage from a JSON string
prompt_stage_instance = PromptStage.from_json(json)
# print the JSON string representation of the object
print(PromptStage.to_json())
# convert the object into a dict
prompt_stage_dict = prompt_stage_instance.to_dict()
# create an instance of PromptStage from a dict
prompt_stage_from_dict = PromptStage.from_dict(prompt_stage_dict)