panda.tube.wordpress.Profile 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 Profile {
public String first_name;
public String last_name;
public String url;
public String display_name;
public String nickname;
public String nicename;
public String bio;
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}