![JAR search and dependency download from the Maven repository](/logo.png)
com.moesif.api.models.GovernanceRuleRegexRuleModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moesifapi Show documentation
Show all versions of moesifapi Show documentation
Java API Library for Moesif
The newest version!
package com.moesif.api.models;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonSetter;
import java.util.*;
public class GovernanceRuleRegexRuleModel
implements java.io.Serializable {
private List conditions;
private int sampleRate;
/** GETTER
* conditions
* @return the value
*/
@JsonGetter("conditions")
public List getConditions ( ) {
return this.conditions;
}
/** SETTER
* conditions
* @param value the value to set
*/
@JsonSetter("conditions")
public void setConditions (List value) {
this.conditions = value;
}
/** GETTER
* sampleRate
* @return the value
*/
@JsonGetter("sample_rate")
public int getSampleRate ( ) {
return this.sampleRate;
}
/** SETTER
* sampleRate
* @param value the value to set
*/
@JsonSetter("sample_rate")
public void setSampleRate (int value) {
this.sampleRate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy