QuarkApi qrcode debug
This commit is contained in:
parent
3b7781f8e2
commit
a407fcb30a
|
|
@ -5,6 +5,9 @@ public class AccountInfo {
|
|||
private Data data;
|
||||
private String code;
|
||||
|
||||
public AccountInfo() {
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
|
@ -35,6 +38,9 @@ public class AccountInfo {
|
|||
private String mobilekps;
|
||||
private Config config;
|
||||
|
||||
public Data() {
|
||||
}
|
||||
|
||||
public String getNickname() {
|
||||
return nickname;
|
||||
}
|
||||
|
|
@ -69,6 +75,8 @@ public class AccountInfo {
|
|||
}
|
||||
|
||||
public static class Config {
|
||||
public Config() {
|
||||
}
|
||||
// 可以根据实际情况添加属性
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,9 @@ public class ApiResponse<T> {
|
|||
@SerializedName("metadata")
|
||||
private Metadata metadata;
|
||||
|
||||
// Getters and Setters
|
||||
public ApiResponse() {
|
||||
}
|
||||
// Getters and Setters
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,9 @@ public class Data {
|
|||
@SerializedName("list")
|
||||
private List<Item> list;
|
||||
|
||||
// Getters and Setters
|
||||
public Data() {
|
||||
}
|
||||
// Getters and Setters
|
||||
|
||||
public int getIsOwner() {
|
||||
return isOwner;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,9 @@ public class Metadata {
|
|||
@SerializedName("_t_group")
|
||||
private String tGroup;
|
||||
|
||||
// Getters and Setters
|
||||
public Metadata() {
|
||||
}
|
||||
// Getters and Setters
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ public class ShareData {
|
|||
private String folderId;
|
||||
private String sharePwd ;
|
||||
|
||||
public ShareData() {
|
||||
}
|
||||
|
||||
public ShareData(String shareId, String folderId) {
|
||||
this.shareId = shareId;
|
||||
this.folderId = folderId;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@ import com.google.gson.annotations.SerializedName;
|
|||
public class WebApiResponse {
|
||||
private int status;
|
||||
private String message;
|
||||
|
||||
public WebApiResponse() {
|
||||
}
|
||||
|
||||
private Data data;
|
||||
|
||||
public int getStatus() {
|
||||
|
|
@ -32,6 +36,9 @@ public class WebApiResponse {
|
|||
}
|
||||
|
||||
public static class Data {
|
||||
public Data() {
|
||||
}
|
||||
|
||||
private Members members;
|
||||
|
||||
public Members getMembers() {
|
||||
|
|
@ -48,6 +55,9 @@ public class WebApiResponse {
|
|||
@SerializedName("service_ticket")
|
||||
private String serviceTicket;
|
||||
|
||||
public Members() {
|
||||
}
|
||||
|
||||
public String getServiceTicket() {
|
||||
return serviceTicket;
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
2c35d2eacadc1d8a555a82b8dccbd01c
|
||||
aea3952e8c980e8923e10638dabe4dcc
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;2c35d2eacadc1d8a555a82b8dccbd01c",
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;aea3952e8c980e8923e10638dabe4dcc",
|
||||
"lives": [
|
||||
{
|
||||
"name": "直播ipv6",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;2c35d2eacadc1d8a555a82b8dccbd01c",
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;aea3952e8c980e8923e10638dabe4dcc",
|
||||
"lives": [
|
||||
{
|
||||
"name": "直播ipv6",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;2c35d2eacadc1d8a555a82b8dccbd01c",
|
||||
"spider": "https://androidcatvodspider.pages.dev/jar/custom_spider.jar;md5;aea3952e8c980e8923e10638dabe4dcc",
|
||||
"lives": [
|
||||
{
|
||||
"name": "直播ipv6",
|
||||
|
|
|
|||
Loading…
Reference in New Issue