panda.tube.wordpress.Term Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube-wordpress Show documentation
Show all versions of panda-tube-wordpress Show documentation
Panda Tube WordPress is a Web Service API client for WordPress.
The newest version!
package panda.tube.wordpress;
import panda.bind.json.Jsons;
public class Term {
public String term_id;
public String name;
public String slug;
public String term_group;
public String term_taxonomy_id;
public String taxonomy;
public String description;
public String parent;
public Integer count;
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}