Request schema for updating a namespace's payload indexes.
| Name | Type | Description | Notes |
|---|---|---|---|
| namespace_name | str | Name of the namespace to update | [optional] |
| payload_indexes | List[PayloadIndexConfigInput] | Updated list of payload index configurations | [optional] |
from mixpeek.models.update_namespace_request import UpdateNamespaceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateNamespaceRequest from a JSON string
update_namespace_request_instance = UpdateNamespaceRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateNamespaceRequest.to_json())
# convert the object into a dict
update_namespace_request_dict = update_namespace_request_instance.to_dict()
# create an instance of UpdateNamespaceRequest from a dict
update_namespace_request_from_dict = UpdateNamespaceRequest.from_dict(update_namespace_request_dict)