Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.04 KB

File metadata and controls

35 lines (26 loc) · 1.04 KB

LogoutURL

Data for a single logout URL

Properties

Name Type Description Notes
url str
provider_name str [optional]
binding str [optional]
saml_request str [optional]
saml_response str [optional]
saml_relay_state str [optional]

Example

from authentik_client.models.logout_url import LogoutURL

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

# convert the object into a dict
logout_url_dict = logout_url_instance.to_dict()
# create an instance of LogoutURL from a dict
logout_url_from_dict = LogoutURL.from_dict(logout_url_dict)

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