@@ -9,7 +9,7 @@ export type DomainLastStatusRecordStatus =
99 | 'not_found'
1010
1111export type DomainReputationStatus =
12- | 'unknown '
12+ | 'unknown_status '
1313 | 'excellent'
1414 | 'good'
1515 | 'average'
@@ -111,8 +111,8 @@ export interface Domain {
111111 /** Domain's statistics. */
112112 statistics ?: DomainStatistics
113113 /**
114- * Domain 's reputation, available when your domain is checked and has sent
115- * enough emails.
114+ * The domain 's reputation is available when your domain is checked and has
115+ * sent enough emails.
116116 */
117117 reputation ?: DomainReputation
118118 region : Region
@@ -152,15 +152,19 @@ export interface DomainLastStatusSpfRecord {
152152
153153/** Domain. reputation. */
154154export interface DomainReputation {
155- /** Status of your domain reputation. */
155+ /** Status of your domain's reputation. */
156156 status : DomainReputationStatus
157- /** Represent a number between 0 and 100 of your domain reputation score. */
157+ /**
158+ * A range from 0 to 100 that determines your domain's reputation score. A
159+ * score of `0` means a bad domain reputation and a score of `100` means an
160+ * excellent domain reputation.
161+ */
158162 score : number
159163 /** Time and date the score was calculated. */
160164 scoredAt ?: Date
161- /** The domain reputation score previously calculated . */
165+ /** The previously-calculated domain's reputation score. */
162166 previousScore ?: number
163- /** Time and date the previous score was calculated. */
167+ /** Time and date the previous reputation score was calculated. */
164168 previousScoredAt ?: Date
165169}
166170
0 commit comments