The paragraph parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| align | int | The paragraph align. | [optional] |
| runs | List[Run] | The list of text runs from the paragraph. | [optional] |
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)