com.haoxuer.discover.weibo.api.domain.request.TopicPostRequest Maven / Gradle / Ivy
package com.haoxuer.discover.weibo.api.domain.request;
import com.haoxuer.discover.rest.base.RequestUserTokenObject;
import java.util.List;
public class TopicPostRequest extends RequestUserTokenObject {
private String note;
private List channels;
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public List getChannels() {
return channels;
}
public void setChannels(List channels) {
this.channels = channels;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy