panda.tube.wordpress.Blog 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;
/**
* Class that keeps the information on a blog for a user
*/
public class Blog {
public String blogid;
public String blogName;
public String url;
public String xmlrpc;
public Boolean isAdmin;
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}