lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

MemoryImportResponse

Properties

Name Type Description Notes
id int A unique Memory identifier. [optional]
is_processing int The current state of the import. [optional]

Example

from lilt.models.memory_import_response import MemoryImportResponse

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

# convert the object into a dict
memory_import_response_dict = memory_import_response_instance.to_dict()
# create an instance of MemoryImportResponse from a dict
memory_import_response_from_dict = MemoryImportResponse.from_dict(memory_import_response_dict)

[Back to Model list] [Back to API list] [Back to README]