Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

FindCommentsByRangeItem

Properties

Name Type Description Notes
comment FComment
result QuestionResult

Example

from client.models.find_comments_by_range_item import FindCommentsByRangeItem

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

# convert the object into a dict
find_comments_by_range_item_dict = find_comments_by_range_item_instance.to_dict()
# create an instance of FindCommentsByRangeItem from a dict
find_comments_by_range_item_from_dict = FindCommentsByRangeItem.from_dict(find_comments_by_range_item_dict)

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