MCPcopy Create free account
hub / github.com/FongMi/CatVodSpider / Filter

Class Filter

app/src/main/java/com/github/catvod/bean/Filter.java:7–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import java.util.List;
6
7public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected