Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 946 Bytes

File metadata and controls

31 lines (22 loc) · 946 Bytes

RedirectURI

A single allowed redirect URI entry

Properties

Name Type Description Notes
matching_mode MatchingModeEnum
url str

Example

from authentik_client.models.redirect_uri import RedirectURI

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

# convert the object into a dict
redirect_uri_dict = redirect_uri_instance.to_dict()
# create an instance of RedirectURI from a dict
redirect_uri_from_dict = RedirectURI.from_dict(redirect_uri_dict)

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