Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 885 Bytes

File metadata and controls

28 lines (20 loc) · 885 Bytes

ReviewConfig

Properties

Name Type Description Notes
review_display str [optional] [readonly]

Example

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)

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