threaded_comments property

threaded_comments property

Gets the list of threaded comments;

Example


threadedComments = comment1.threaded_comments
for i in range(len(threadedComments)):
    tc = threadedComments[i]
    note = tc.notes

Definition:

@property
def threaded_comments(self):
    ...

See Also