
io.rong.models.response.PushResult Maven / Gradle / Ivy
package io.rong.models.response;
import io.rong.models.Result;
import io.rong.util.GsonUtil;
/**
* push 返回结果
*/
public class PushResult extends Result {
/**
* 推送唯一标识。
*/
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PushResult(Integer code, String id) {
super(code, id);
this.code = code;
this.id = id;
}
@Override
public String toString() {
return GsonUtil.toJson(this, PushResult.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy