GoodMem
ReferenceClient SDKsPython SDKModels

SystemInfoResponse Model

SystemInfoResponse Model documentation for Python SDK

Properties

NameTypeDescriptionNotes
versionstr[optional]
majorint
minorint
patchint
dirtybool
git_commitstr[optional]
git_describestr[optional]
build_timedatetime[optional]
capabilitiesDict[str, str][optional]

Example

from goodmem_client.models.system_info_response import SystemInfoResponse

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

# convert the object into a dict
system_info_response_dict = system_info_response_instance.to_dict()
# create an instance of SystemInfoResponse from a dict
system_info_response_from_dict = SystemInfoResponse.from_dict(system_info_response_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page