Skip to content

GenerateTOCRequest

Schema for generating table of contents.

Properties

NameTypeDescriptionNotes
focusstr[optional]

Example

python
from syntheticusers.models.generate_toc_request import GenerateTOCRequest

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

# convert the object into a dict
generate_toc_request_dict = generate_toc_request_instance.to_dict()
# create an instance of GenerateTOCRequest from a dict
generate_toc_request_from_dict = GenerateTOCRequest.from_dict(generate_toc_request_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.