FeedbackWithReplies#

class FeedbackWithReplies[source]#

The JSON representation for feedback with replies.

type: Literal['feedback-with-replies']#

The feedback of a submission with comments.

general_comment: Optional[GeneralFeedbackCommentBase]#

The general feedback given on this submission.

user: Sequence[InlineFeedbackCommentBase]#

A list inline feedback that was given on this submission.

authors: Sequence[User]#

A list of all authors you have permission to see that placed comments. This list is unique, i.e. each author occurs at most once.

general: str#

The general feedback given on this submission.

linter: Mapping[str, Mapping[str, Sequence[Sequence[Union[LinterComment, str]]]]]#

A mapping that is almost the same the user feedback mapping for feedback without replies, only the final key is not a string but a list of tuples where the first item is the linter code and the second item is linter comments.