/**
* @fileoverview Exposed data type for use outside of VdsClient.
* All properties should be exposed to allow use from uncompiled
* code.
*
* @author kim.simmons@spark-vision.com (Kim Simmons)
*/
goog.provide('spv.vds.ConfigQuickInfo');
/**
* @export
* @struct
* @constructor
*/
spv.vds.ConfigQuickInfo = function()
{
/**
* @type {string}
* @nocollapse
*/
this.config_name;
/**
* @type {string}
* @nocollapse
*/
this.model;
/**
* @type {string}
* @nocollapse
*/
this.model_variant;
/**
* @type {string}
* @nocollapse
*/
this.engine;
/**
* @type {string}
* @nocollapse
*/
this.date_created;
};