InstallationInfo
Class InstallationInfo.
Properties
Name | Type | Description | Notes |
---|---|---|---|
guid | str | Gets or sets the Id. | [optional] |
name | str | Gets or sets the name. | [optional] |
version | str | Gets or sets the version. | [optional] |
changelog | str | Gets or sets the changelog for this version. | [optional] |
source_url | str | Gets or sets the source URL. | [optional] |
checksum | str | Gets or sets a checksum for the binary. | [optional] |
package_info | PackageInfo | Gets or sets package information for the installation. | [optional] |
Example
from jellyfin.generated.api_10_11.models.installation_info import InstallationInfo
# TODO update the JSON string below
json = "{}"
# create an instance of InstallationInfo from a JSON string
installation_info_instance = InstallationInfo.from_json(json)
# print the JSON string representation of the object
print(InstallationInfo.to_json())
# convert the object into a dict
installation_info_dict = installation_info_instance.to_dict()
# create an instance of InstallationInfo from a dict
installation_info_from_dict = InstallationInfo.from_dict(installation_info_dict)