Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 959 Bytes

File metadata and controls

30 lines (22 loc) · 959 Bytes

Paragraph

The paragraph parameters.

Properties

Name Type Description Notes
align int The paragraph align. [optional]
runs List[Run] The list of text runs from the paragraph. [optional]

Example

from docspace_api_sdk.models.paragraph import Paragraph

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

# convert the object into a dict
paragraph_dict = paragraph_instance.to_dict()
# create an instance of Paragraph from a dict
paragraph_from_dict = Paragraph.from_dict(paragraph_dict)

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