GoodMem
ReferenceClient SDKsPython SDKRequests

UpdateSpaceRequest

UpdateSpaceRequest documentation for Python SDK

Request parameters for updating a space.

Properties

NameTypeDescriptionNotes
validate_label_strategyobject[optional]
namestrThe new name for the space.[optional]
public_readboolWhether the space is publicly readable by all users.[optional]
replace_labelsDict[str, str]Labels to replace all existing labels. Mutually exclusive with mergeLabels.[optional]
merge_labelsDict[str, str]Labels to merge with existing labels. Mutually exclusive with replaceLabels.[optional]
default_chunking_configChunkingConfiguration[optional]

Example

from goodmem_client.models.update_space_request import UpdateSpaceRequest

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

# convert the object into a dict
update_space_request_dict = update_space_request_instance.to_dict()
# create an instance of UpdateSpaceRequest from a dict
update_space_request_from_dict = UpdateSpaceRequest.from_dict(update_space_request_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page