All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.ex.wordpress.MediaObject Maven / Gradle / Ivy

Go to download

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;

/**
 * Media Object, as the result of an upload;
 */
public class MediaObject {
	public String id;
	
	public String url;

	public String file;

	public String type;

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String toString() {
		return Jsons.toJson(this, true);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy