com.hiczp.bilibili.api.live.entity.CancelMedalResponseEntity 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.annotations.SerializedName;
import java.util.List;
public class CancelMedalResponseEntity extends ResponseEntity {
/**
* code : 0
* message : OK
* data : []
*/
@SerializedName("code")
private int code;
@SerializedName("data")
private List> data;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public List> getData() {
return data;
}
public void setData(List> data) {
this.data = data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy