Skip to main content

MegaCallResult

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

import type {
CommentRelevanceResult,
CommentScore,
DogwhistleResult,
MegaCallResult,
SpamDetectionResult
} from "@respectify/client";

Fields

comment_score

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

result.comment_score: CommentScore | null

spam_check

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

result.spam_check: SpamDetectionResult | null

relevance_check

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

result.relevance_check: CommentRelevanceResult | null

dogwhistle_check

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

result.dogwhistle_check: DogwhistleResult | null