com.byteplus.model.live.v20200801.ListSDKBody Maven / Gradle / Ivy
package com.byteplus.model.live.v20200801;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* ListSDKBody
*/
@lombok.Data
public final class ListSDKBody {
/**
* 每页大小
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PageSize")
private Integer pageSize;
/**
* 页码
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PageNum")
private Integer pageNum;
/**
* sdk 记录ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ID")
private Integer iD;
/**
* 应用ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppID")
private Integer appID;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BundleID")
private String bundleID;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PackageName")
private String packageName;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "LicenseID")
private String licenseID;
/**
* SDK版本,精简版:1、互动版:2
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SDKVersion")
private String sDKVersion;
/**
* 状态
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private List status;
/**
* 购买方式
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SellType")
private String sellType;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}