| Name | Type | Description | Notes |
|---|---|---|---|
| review_display | str | [optional] [readonly] |
from docspace_api_sdk.models.review_config import ReviewConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ReviewConfig from a JSON string
review_config_instance = ReviewConfig.from_json(json)
# print the JSON string representation of the object
print(ReviewConfig.to_json())
# convert the object into a dict
review_config_dict = review_config_instance.to_dict()
# create an instance of ReviewConfig from a dict
review_config_from_dict = ReviewConfig.from_dict(review_config_dict)