/**
* @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.ConfigQuickInfoResult');
goog.require('spv.vds.ConfigQuickInfo');
/**
* @export
* @struct
* @constructor
*/
spv.vds.ConfigQuickInfoResult = function()
{
/**
* @type {Array.<spv.vds.ConfigQuickInfo>}
* @nocollapse
*/
this.result = [];
};