Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 980 Bytes

File metadata and controls

30 lines (21 loc) · 980 Bytes

CommentsData

Properties

Name Type Description Notes
inline_comments List[InlineComment] Structured inline comments with line numbers
task_status str Task status

Example

from revengai.models.comments_data import CommentsData

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

# convert the object into a dict
comments_data_dict = comments_data_instance.to_dict()
# create an instance of CommentsData from a dict
comments_data_from_dict = CommentsData.from_dict(comments_data_dict)

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