All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.weibo.api.domain.request.WeiboPostRequest Maven / Gradle / Ivy

package com.haoxuer.discover.weibo.api.domain.request;

import com.haoxuer.discover.rest.base.RequestUserTokenObject;

import java.util.List;

public class WeiboPostRequest extends RequestUserTokenObject {

  private String note;

  private List channels;

  private List images;

  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;
  }

  public List getImages() {
    return images;
  }

  public void setImages(List images) {
    this.images = images;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy