| 5 | import java.util.List; |
| 6 | |
| 7 | public class Filter { |
| 8 | |
| 9 | @SerializedName("key") |
| 10 | private String key; |
| 11 | @SerializedName("name") |
| 12 | private String name; |
| 13 | @SerializedName("init") |
| 14 | private String init; |
| 15 | @SerializedName("value") |
| 16 | private List<Value> value; |
| 17 | |
| 18 | public Filter(String key, String name, List<Value> value) { |
| 19 | this.key = key; |
| 20 | this.name = name; |
| 21 | this.value = value; |
| 22 | } |
| 23 | |
| 24 | public static class Value { |
| 25 | |
| 26 | @SerializedName("n") |
| 27 | private String n; |
| 28 | @SerializedName("v") |
| 29 | private String v; |
| 30 | |
| 31 | public Value(String value) { |
| 32 | this.n = value; |
| 33 | this.v = value; |
| 34 | } |
| 35 | |
| 36 | public Value(String n, String v) { |
| 37 | this.n = n; |
| 38 | this.v = v; |
| 39 | } |
| 40 | } |
| 41 | } |
nothing calls this directly
no outgoing calls
no test coverage detected