Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

IframeLogoutChallenge

Challenge for iframe logout

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-provider-iframe-logout']
response_errors Dict[str, List[ErrorDetail]] [optional]
logout_urls List[LogoutURL] [optional]

Example

from authentik_client.models.iframe_logout_challenge import IframeLogoutChallenge

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

# convert the object into a dict
iframe_logout_challenge_dict = iframe_logout_challenge_instance.to_dict()
# create an instance of IframeLogoutChallenge from a dict
iframe_logout_challenge_from_dict = IframeLogoutChallenge.from_dict(iframe_logout_challenge_dict)

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