Update jar
This commit is contained in:
parent
cd81f37e9e
commit
bcae46314c
|
|
@ -15,7 +15,7 @@ public class Card {
|
||||||
|
|
||||||
@SerializedName("name")
|
@SerializedName("name")
|
||||||
private String name;
|
private String name;
|
||||||
@SerializedName("img")
|
@SerializedName(value = "img", alternate = "picurl")
|
||||||
private String img;
|
private String img;
|
||||||
@SerializedName("id")
|
@SerializedName("id")
|
||||||
private String id;
|
private String id;
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import java.util.List;
|
||||||
public class Detail {
|
public class Detail {
|
||||||
|
|
||||||
@SerializedName("id")
|
@SerializedName("id")
|
||||||
private Integer id;
|
private String id;
|
||||||
@SerializedName("videos")
|
@SerializedName("videos")
|
||||||
private List<Video> videos;
|
private List<Video> videos;
|
||||||
@SerializedName("actor")
|
@SerializedName("actor")
|
||||||
|
|
@ -34,7 +34,7 @@ public class Detail {
|
||||||
return new Gson().fromJson(str, Detail.class);
|
return new Gson().fromJson(str, Detail.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getId() {
|
public String getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
762da1e25500a10f2bd1c672a145b836
|
a954689c65dff0bf8728a895798bb68a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue