panda.ex.wordpress.Category Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.wordpress;
import panda.bind.json.Jsons;
/**
* Category object for a blog.
*/
public class Category {
public String categoryId;
public String parentId;
public String categoryName;
public String categoryDescription;
public String description;
public String htmlUrl;
public String rssUrl;
public String slug;
//----------------------------------------------------
// alias
//
/**
* @return the categoryId
*/
public String getCategory_id() {
return categoryId;
}
/**
* @param categoryId the categoryId to set
*/
public void setCategory_id(String categoryId) {
this.categoryId = categoryId;
}
/**
* @return the categoryName
*/
public String getCategory_name() {
return categoryName;
}
/**
* @param categoryName the categoryName to set
*/
public void setCategory_name(String categoryName) {
this.categoryName = categoryName;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}