Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.49 KB

File metadata and controls

34 lines (25 loc) · 1.49 KB

UpdateSectionRequest

Request to update a section.

Properties

Name Type Description Notes
name str New section name (can contain any characters) [optional]
page_number int New page number (must be > 0) [optional]
prev_sibling_path_id UUID Move after this sibling PathPart ID [optional]
move_to_head bool Set to true to move to head of sibling list. This is needed since prev_sibling_path_id = None means no update [optional] [default to False]
parent_path_part_id UUID Reparent to this PathPart ID (must be DOCUMENT_VERSION or SECTION in the same document version) [optional]

Example

from ksapi.models.update_section_request import UpdateSectionRequest

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

# convert the object into a dict
update_section_request_dict = update_section_request_instance.to_dict()
# create an instance of UpdateSectionRequest from a dict
update_section_request_from_dict = UpdateSectionRequest.from_dict(update_section_request_dict)

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