All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.moesif.api.models.GovernanceRuleRegexRuleModel Maven / Gradle / Ivy

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