/**
* @fileoverview Exposed data type for use outside of DsClient.
* All properties should be exposed to allow use from uncompiled
* code.
*
* @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
*/
goog.provide('spv.ds.Summary');
goog.require('spv.ds.ItemSummary');
/**
* @export
* @struct
* @constructor
* @param {Array.<spv.ds.ItemSummary>} item_summaries
*/
spv.ds.Summary = function(item_summaries)
{
/**
* @type {Array.<spv.ds.ItemSummary>}
* @nocollapse
*/
this.item_summaries = item_summaries;
};