com.hiczp.bilibili.api.live.entity.SendOnlineHeartResponseEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.live.entity;
import com.google.gson.JsonElement;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class SendOnlineHeartResponseEntity extends ResponseEntity {
/**
* code : 0
* message : ok
* data : {"giftlist":[]}
*/
@SerializedName("code")
private int code;
@SerializedName("data")
private Data data;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public Data getData() {
return data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
@SerializedName("giftlist")
private List giftList;
public List getGiftList() {
return giftList;
}
public void setGiftList(List giftList) {
this.giftList = giftList;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy