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

org.stjs.bridge.cloudinary.CloudinaryResult Maven / Gradle / Ivy

Go to download

Cloudinary_js is the js libary to use library from webbrowser in javascript. Currently supports the v1 of the library ((https://github.com/cloudinary/cloudinary_js/))

The newest version!
/*
    ST-JS-Cloudinary, a ST-JS bridge for cloudinary_js
    (c) 2015 La Roue Verte
     
	This file is part of ST-JS-Cloudinary.

    ST-JS-Cloudinary is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or any later version.

    ST-JS-Cloudinary is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with ST-JS-Cloudinary.  If not, see 
 */
package org.stjs.bridge.cloudinary;

import org.stjs.javascript.annotation.SyntheticType;

@SyntheticType
public class CloudinaryResult {

	public String public_id;
	public Long version;
	public String signature;
	public Integer width;
	public Integer height;
	public String format;
	public String resource_type;
	public String created_at;
	public Long bytes;
	public String type;
	public String url;
	public String secure_url;
	public String path;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy