Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

UpdateChunkContentRequest

Request to update chunk content (creates new content row).

Properties

Name Type Description Notes
content str New chunk text content

Example

from ksapi.models.update_chunk_content_request import UpdateChunkContentRequest

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

# convert the object into a dict
update_chunk_content_request_dict = update_chunk_content_request_instance.to_dict()
# create an instance of UpdateChunkContentRequest from a dict
update_chunk_content_request_from_dict = UpdateChunkContentRequest.from_dict(update_chunk_content_request_dict)

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