interface DomainReputation {
    previousScore?: number;
    previousScoredAt?: Date;
    score: number;
    scoredAt?: Date;
    status: DomainReputationStatus;
}

Properties

previousScore?: number

The previously-calculated domain's reputation score.

previousScoredAt?: Date

Time and date the previous reputation score was calculated.

score: number

A range from 0 to 100 that determines your domain's reputation score. A score of 0 means a bad domain reputation and a score of 100 means an excellent domain reputation.

scoredAt?: Date

Time and date the score was calculated.

Status of your domain's reputation.