panda.tube.wordpress.MediaItemSize 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 MediaItemSize {
public String file;
public String width;
public String height;
public String mime_type;
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}