Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.62 KB

File metadata and controls

37 lines (28 loc) · 1.62 KB

PatchedAuthenticatorDuoStageRequest

AuthenticatorDuoStage Serializer

Properties

Name Type Description Notes
name str [optional]
configure_flow UUID Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. [optional]
friendly_name str [optional]
client_id str [optional]
client_secret str [optional]
api_hostname str [optional]
admin_integration_key str [optional]
admin_secret_key str [optional]

Example

from authentik_client.models.patched_authenticator_duo_stage_request import PatchedAuthenticatorDuoStageRequest

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

# convert the object into a dict
patched_authenticator_duo_stage_request_dict = patched_authenticator_duo_stage_request_instance.to_dict()
# create an instance of PatchedAuthenticatorDuoStageRequest from a dict
patched_authenticator_duo_stage_request_from_dict = PatchedAuthenticatorDuoStageRequest.from_dict(patched_authenticator_duo_stage_request_dict)

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