GoodMem
ReferenceClient SDKsPython SDKResponses

SystemInitResponse

SystemInitResponse documentation for Python SDK

Response from the system initialization endpoint.

Properties

NameTypeDescriptionNotes
already_initializedboolIndicates whether the system was already initialized before this request.
messagestrA human-readable message about the initialization status.
root_api_keystrThe API key for the root user. Only present if system was just initialized (not previously initialized).[optional]
user_idstrThe 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

On this page