Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

UpdateDocumentReview

Properties

Name Type Description Notes
review_status DocumentReviewStatus [optional]
required_decisions int Number of decisions required to complete the review [optional]
comments str Review comments [optional]

Example

from formkiq_client.models.update_document_review import UpdateDocumentReview

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

# convert the object into a dict
update_document_review_dict = update_document_review_instance.to_dict()
# create an instance of UpdateDocumentReview from a dict
update_document_review_from_dict = UpdateDocumentReview.from_dict(update_document_review_dict)

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