io.split.telemetry.domain.MethodLatencies Maven / Gradle / Ivy
The newest version!
package io.split.telemetry.domain;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
import java.util.List;
public class MethodLatencies {
/* package private */ static final String FIELD_TREATMENT = "t";
/* package private */ static final String FIELD_TREATMENTS = "ts";
/* package private */ static final String FIELD_TREATMENT_WITH_CONFIG = "tc";
/* package private */ static final String FIELD_TREATMENTS_WITH_CONFIG = "tcs";
/* package private */ static final String FIELD_TREATMENT_BY_FLAG_SET = "tf";
/* package private */static final String FIELD_TREATMENT_BY_FLAG_SETS = "tfs";
/* package private */static final String FIELD_TREATMENT_WITH_CONFIG_BY_FLAG_SET = "tcf";
/* package private */static final String FIELD_TREATMENT_WITH_CONFIG_BY_FLAG_SETS = "tcfs";
/* package private */ static final String FIELD_TRACK = "tr";
@SerializedName(FIELD_TREATMENT)
private List _treatment;
@SerializedName(FIELD_TREATMENTS)
private List _treatments;
@SerializedName(FIELD_TREATMENT_WITH_CONFIG)
private List _treatmentWithConfig;
@SerializedName(FIELD_TREATMENTS_WITH_CONFIG)
private List _treatmentsWithConfig;
@SerializedName(FIELD_TREATMENT_BY_FLAG_SET)
private List _treatmentByFlagSet;
@SerializedName(FIELD_TREATMENT_BY_FLAG_SETS)
private List _treatmentByFlagSets;
@SerializedName(FIELD_TREATMENT_WITH_CONFIG_BY_FLAG_SET)
private List _treatmentWithConfigByFlagSet;
@SerializedName(FIELD_TREATMENT_WITH_CONFIG_BY_FLAG_SETS)
private List _treatmentWithConfigByFlagSets;
@SerializedName(FIELD_TRACK)
private List _track;
public MethodLatencies() {
_treatment = new ArrayList<>();
_treatments = new ArrayList<>();
_treatmentWithConfig = new ArrayList<>();
_treatmentsWithConfig = new ArrayList<>();
_treatmentByFlagSet = new ArrayList<>();
_treatmentByFlagSets = new ArrayList<>();
_treatmentWithConfigByFlagSet = new ArrayList<>();
_treatmentWithConfigByFlagSets = new ArrayList<>();
_track = new ArrayList<>();
}
public List getTreatment() {
return _treatment;
}
public void setTreatment(List treatment) {
this._treatment = treatment;
}
public List getTreatments() {
return _treatments;
}
public void setTreatments(List treatments) {
this._treatments = treatments;
}
public List getTreatmentsWithConfig() {
return _treatmentsWithConfig;
}
public void setTreatmentsWithConfig(List treatmentsWithConfig) {
this._treatmentsWithConfig = treatmentsWithConfig;
}
public List getTreatmentWithConfig() {
return _treatmentWithConfig;
}
public void setTreatmentWithConfig(List treatmentWithConfig) {
this._treatmentWithConfig = treatmentWithConfig;
}
public List getTrack() {
return _track;
}
public void setTrack(List track) {
this._track = track;
}
public List getTreatmentByFlagSet() {
return _treatmentByFlagSet;
}
public List getTreatmentByFlagSets() {
return _treatmentByFlagSets;
}
public void setTreatmentByFlagSet(List treatmentByFlagSet) {
this._treatmentByFlagSet = treatmentByFlagSet;
}
public void setTreatmentByFlagSets(List treatmentByFlagSets) {
this._treatmentByFlagSets = treatmentByFlagSets;
}
public List getTreatmentWithConfigByFlagSet() {
return _treatmentWithConfigByFlagSet;
}
public void setTreatmentWithConfigByFlagSet(List treatmentWithConfigByFlagSet) {
this._treatmentWithConfigByFlagSet = treatmentWithConfigByFlagSet;
}
public void setTreatmentWithConfigByFlagSets(List treatmentWithConfigByFlagSets) {
this._treatmentWithConfigByFlagSets = treatmentWithConfigByFlagSets;
}
public List getTreatmentWithConfigByFlagSets() {
return _treatmentWithConfigByFlagSets;
}
}