Метод Comment.getReplies
Метод предоставляет доступ к ответам на комментарии. Ответы представляются классом Comments так же, как и сами комментарии документа.
Пример
Comments comments = document.getRange().getComments();
CommentsEnumerator commentsEnumerator = comments.GetEnumerator();
foreach (var comment in commentsEnumerator)
{
Comments replies = comment.getReplies();
CommentsEnumerator repliesEnumerator = replies.GetEnumerator();
foreach (var reply in repliesEnumerator)
{
Console.WriteLine(reply.isResolved());
}
}