GoodMemStatus Type
GoodMemStatus Type documentation for Python SDK
Warning or non-fatal status with granular codes (operation continues)
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| code | str | Status code for the warning or informational message | |
| message | str | Human-readable status message |
Example
from goodmem_client.models.good_mem_status import GoodMemStatus
# TODO update the JSON string below
json = "{}"
# create an instance of GoodMemStatus from a JSON string
good_mem_status_instance = GoodMemStatus.from_json(json)
# print the JSON string representation of the object
print(GoodMemStatus.to_json())
# convert the object into a dict
good_mem_status_dict = good_mem_status_instance.to_dict()
# create an instance of GoodMemStatus from a dict
good_mem_status_from_dict = GoodMemStatus.from_dict(good_mem_status_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK