com.mailosaur.models.SpamAssassinRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailosaur-java Show documentation
Show all versions of mailosaur-java Show documentation
Mailosaur Java Bindings for Email Test Automation
package com.mailosaur.models;
import com.google.api.client.util.Key;
/**
* The SpamAssassinRule model.
*/
public class SpamAssassinRule {
/**
* The score property.
*/
@Key
private Double score;
/**
* The rule property.
*/
@Key
private String rule;
/**
* The description property.
*/
@Key
private String description;
/**
* Get the score value.
*
* @return the score value
*/
public Double score() {
return this.score;
}
/**
* Get the rule value.
*
* @return the rule value
*/
public String rule() {
return this.rule;
}
/**
* Get the description value.
*
* @return the description value
*/
public String description() {
return this.description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy