goog.provide('spv.ds.UserConfigInfo');
/**
*
* @struct
* @constructor
*/
spv.ds.UserConfigInfo = function()
{
/**
* @type {string}
* @nocollapse
*/
this.name;
/**
* @type {string}
* @nocollapse
*/
this.description;
/**
* @type {number}
* @nocollapse
*/
this.id;
/**
* @type {string}
* @nocollapse
*/
this.timestamp;
/**
* @type {Object.<string,string>}
* @nocollapse
*/
this.image_urls;
/**
* @type {Object.<string,string>}
* @nocollapse
*/
this.user_config_aux;
/**
* @type {Object.<string,string>}
* @nocollapse
*/
this.config_storage_aux;
}