/**
* @fileoverview Exposed data type for use outside of DsClient.
* All properties should be exposed to allow use from uncompiled
* code. Unfortunately @export is not allowed on object properties
* which force us to use @expose instead.
*
* @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
*/
goog.provide('spv.ds.ImageResult');
/**
* Result data from image request
*
* @export
* @constructor
* @param {string} image_url
*/
spv.ds.ImageResult = function(image_url)
{
/**
* @nocollapse
* @type {string}
*/
this.image_url = image_url;
};