Skip to main content

MegaCallResult

Represents the result of a mega call containing multiple analysis types.

from respectify.schemas import CommentRelevanceResult, CommentScore, DogwhistleResult, MegaCallResult, SpamDetectionResult

Fields

comment_score

Comment score result. Null unless requested via include_comment_score (Python) or 'commentscore' service (PHP).

result.comment_score: Optional[CommentScore]

spam_check

Spam detection result. Null unless requested via include_spam (Python) or 'spam' service (PHP).

result.spam_check: Optional[SpamDetectionResult]

relevance_check

Comment relevance result. Null unless requested via include_relevance (Python) or 'relevance' service (PHP).

result.relevance_check: Optional[CommentRelevanceResult]

dogwhistle_check

Dogwhistle detection result. Null unless requested via include_dogwhistle (Python) or 'dogwhistle' service (PHP).

result.dogwhistle_check: Optional[DogwhistleResult]