/**
* @fileoverview Exposed data type for use outside of VdsClient.
* All properties should be exposed to allow use from uncompiled
* code.
*
* @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
*/
goog.provide('spv.vds.VolvoCarSpecTechData');
/**
* @struct
* @constructor
* @param {string} name
* @param {Object} value
*/
spv.vds.VolvoCarSpecTechData = function(name, value)
{
/**
* @type {string}
* @nocollapse
*/
this.name = name;
/**
* @type {Object}
* @nocollapse
*/
this.value = value;
};