Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

AddDocumentReviewRequest

Properties

Name Type Description Notes
review AddDocumentReview [optional]

Example

from formkiq_client.models.add_document_review_request import AddDocumentReviewRequest

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

# convert the object into a dict
add_document_review_request_dict = add_document_review_request_instance.to_dict()
# create an instance of AddDocumentReviewRequest from a dict
add_document_review_request_from_dict = AddDocumentReviewRequest.from_dict(add_document_review_request_dict)

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