Get running and latest version.
| Name | Type | Description | Notes |
|---|---|---|---|
| version_current | str | Get current version | [readonly] |
| version_latest | str | Get latest version from cache | [readonly] |
| version_latest_valid | bool | Check if latest version is valid | [readonly] |
| build_hash | str | Get build hash, if version is not latest or released | [readonly] |
| outdated | bool | Check if we're running the latest version | [readonly] |
| outpost_outdated | bool | Check if any outpost is outdated/has a version mismatch | [readonly] |
from authentik_client.models.version import Version
# TODO update the JSON string below
json = "{}"
# create an instance of Version from a JSON string
version_instance = Version.from_json(json)
# print the JSON string representation of the object
print(Version.to_json())
# convert the object into a dict
version_dict = version_instance.to_dict()
# create an instance of Version from a dict
version_from_dict = Version.from_dict(version_dict)