AssembleMode
Properties
Name |
Type |
Description |
Notes |
page_elements |
List[str] |
|
|
tables |
List[str] |
|
|
Example
from deepsearch.cps.apis.public_v2.models.assemble_mode import AssembleMode
# TODO update the JSON string below
json = "{}"
# create an instance of AssembleMode from a JSON string
assemble_mode_instance = AssembleMode.from_json(json)
# print the JSON string representation of the object
print(AssembleMode.to_json())
# convert the object into a dict
assemble_mode_dict = assemble_mode_instance.to_dict()
# create an instance of AssembleMode from a dict
assemble_mode_form_dict = assemble_mode.from_dict(assemble_mode_dict)
[Back to Model list] [Back to API list] [Back to README]