Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

SourceStageRequest

SourceStage Serializer

Properties

Name Type Description Notes
name str
source UUID
resume_timeout str Amount of time a user can take to return from the source to continue the flow (Format: hours=-1;minutes=-2;seconds=-3) [optional]

Example

from authentik_client.models.source_stage_request import SourceStageRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SourceStageRequest from a JSON string
source_stage_request_instance = SourceStageRequest.from_json(json)
# print the JSON string representation of the object
print(SourceStageRequest.to_json())

# convert the object into a dict
source_stage_request_dict = source_stage_request_instance.to_dict()
# create an instance of SourceStageRequest from a dict
source_stage_request_from_dict = SourceStageRequest.from_dict(source_stage_request_dict)

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