Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 821 Bytes

File metadata and controls

29 lines (20 loc) · 821 Bytes

InstallID

Properties

Name Type Description Notes
install_id str

Example

from authentik_client.models.install_id import InstallID

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

# convert the object into a dict
install_id_dict = install_id_instance.to_dict()
# create an instance of InstallID from a dict
install_id_from_dict = InstallID.from_dict(install_id_dict)

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