| Name | Type | Description | Notes |
|---|---|---|---|
| install_id | str |
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)