Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

PromptStageRequest

PromptStage Serializer

Properties

Name Type Description Notes
name str
fields List[UUID]
validation_policies List[UUID] [optional]

Example

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)

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