SystemInitResponse
SystemInitResponse documentation for Python SDK
Response from the system initialization endpoint.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| already_initialized | bool | Indicates whether the system was already initialized before this request. | |
| message | str | A human-readable message about the initialization status. | |
| root_api_key | str | The API key for the root user. Only present if system was just initialized (not previously initialized). | [optional] |
| user_id | str | The user ID of the root user. Only present if system was just initialized (not previously initialized). | [optional] |
Example
from goodmem_client.models.system_init_response import SystemInitResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SystemInitResponse from a JSON string
system_init_response_instance = SystemInitResponse.from_json(json)
# print the JSON string representation of the object
print(SystemInitResponse.to_json())
# convert the object into a dict
system_init_response_dict = system_init_response_instance.to_dict()
# create an instance of SystemInitResponse from a dict
system_init_response_from_dict = SystemInitResponse.from_dict(system_init_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK