Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.36 KB

File metadata and controls

38 lines (29 loc) · 1.36 KB

PromptStage

PromptStage Serializer

Properties

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]

Example

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)

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