SystemInfoResponse Model
SystemInfoResponse Model documentation for Python SDK
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| version | str | [optional] | |
| major | int | ||
| minor | int | ||
| patch | int | ||
| dirty | bool | ||
| git_commit | str | [optional] | |
| git_describe | str | [optional] | |
| build_time | datetime | [optional] | |
| capabilities | Dict[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